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