using MediaBrowser.Model.Entities; namespace MediaBrowser.Model.Sync { public class ItemFileInfo { /// /// Gets or sets the type. /// /// The type. public ItemFileType Type { get; set; } /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets the path. /// /// The path. public string Path { get; set; } /// /// Gets or sets the type of the image. /// /// The type of the image. public ImageType? ImageType { get; set; } /// /// Gets or sets the index. /// /// The index. public int Index { get; set; } } }