namespace Jellyfin.Api.Models.LibraryDtos;
///
/// The media update info path.
///
public class MediaUpdateInfoPathDto
{
///
/// Gets or sets media path.
///
public string? Path { get; set; }
///
/// Gets or sets media update type.
/// Created, Modified, Deleted.
///
public string? UpdateType { get; set; }
}