using System.Collections.Generic; using MediaBrowser.Model.MediaInfo; namespace MediaBrowser.Controller.Sync { public class SyncedFileInfo { /// /// Gets or sets the path. /// /// The path. public string Path { get; set; } public string[] PathParts { get; set; } /// /// Gets or sets the protocol. /// /// The protocol. public MediaProtocol Protocol { get; set; } /// /// Gets or sets the required HTTP headers. /// /// The required HTTP headers. public Dictionary RequiredHttpHeaders { get; set; } /// /// Gets or sets the identifier. /// /// The identifier. public string Id { get; set; } public SyncedFileInfo() { RequiredHttpHeaders = new Dictionary(); } } }