jellyfin-server/MediaBrowser.Controller/Sync/SyncedFileInfo.cs

35 lines
1012 B
C#
Raw Normal View History

2015-03-13 05:29:39 +00:00
using MediaBrowser.Model.MediaInfo;
2015-03-28 05:07:29 +00:00
using System.Collections.Generic;
2015-03-13 05:29:39 +00:00
namespace MediaBrowser.Controller.Sync
{
2015-03-28 05:07:29 +00:00
public class SyncedFileInfo
2015-03-13 05:29:39 +00:00
{
/// <summary>
/// Gets or sets the path.
/// </summary>
/// <value>The path.</value>
public string Path { get; set; }
/// <summary>
/// Gets or sets the protocol.
/// </summary>
/// <value>The protocol.</value>
public MediaProtocol Protocol { get; set; }
2015-03-28 05:07:29 +00:00
/// <summary>
/// Gets or sets the required HTTP headers.
/// </summary>
/// <value>The required HTTP headers.</value>
public Dictionary<string, string> RequiredHttpHeaders { get; set; }
2015-04-13 05:12:02 +00:00
/// <summary>
/// Gets or sets the identifier.
/// </summary>
/// <value>The identifier.</value>
public string Id { get; set; }
2015-03-28 05:07:29 +00:00
public SyncedFileInfo()
{
RequiredHttpHeaders = new Dictionary<string, string>();
}
2015-03-13 05:29:39 +00:00
}
}