using MediaBrowser.Model.MediaInfo;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Sync
{
    public class SyncedFileInfo
    {
        /// 
        /// Gets or sets the path.
        /// 
        /// The path.
        public string Path { 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();
        }
    }
}