jellyfin/MediaBrowser.Controller/Sync/SyncedFileInfo.cs

35 lines
1,012 B
C#
Raw Normal View History

2015-03-13 06:29:39 +01:00
using MediaBrowser.Model.MediaInfo;
2015-03-28 06:07:29 +01:00
using System.Collections.Generic;
2015-03-13 06:29:39 +01:00
namespace MediaBrowser.Controller.Sync
{
2015-03-28 06:07:29 +01:00
public class SyncedFileInfo
2015-03-13 06:29:39 +01: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 06:07:29 +01: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 07:12:02 +02:00
/// <summary>
/// Gets or sets the identifier.
/// </summary>
/// <value>The identifier.</value>
public string Id { get; set; }
2015-03-28 06:07:29 +01:00
public SyncedFileInfo()
{
RequiredHttpHeaders = new Dictionary<string, string>();
}
2015-03-13 06:29:39 +01:00
}
}