jellyfin/MediaBrowser.Controller/Sync/SyncedFileInfo.cs

42 lines
1.1 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System.Collections.Generic;
using MediaBrowser.Model.MediaInfo;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Sync
{
public class SyncedFileInfo
{
public SyncedFileInfo()
{
RequiredHttpHeaders = new Dictionary<string, string>();
}
2018-12-28 00:27:57 +01:00
/// <summary>
/// Gets or sets the path.
/// </summary>
/// <value>The path.</value>
public string Path { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string[] PathParts { get; set; }
2018-12-28 00:27:57 +01:00
/// <summary>
/// Gets or sets the protocol.
/// </summary>
/// <value>The protocol.</value>
public MediaProtocol Protocol { get; set; }
2018-12-28 00:27:57 +01:00
/// <summary>
/// Gets or sets the required HTTP headers.
/// </summary>
/// <value>The required HTTP headers.</value>
public Dictionary<string, string> RequiredHttpHeaders { get; set; }
2018-12-28 00:27:57 +01:00
/// <summary>
/// Gets or sets the identifier.
/// </summary>
/// <value>The identifier.</value>
public string Id { get; set; }
}
}