aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Sync/SyncedFileInfo.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2015-03-31 15:41:12 -0400
committerLuke <luke.pulverenti@gmail.com>2015-03-31 15:41:12 -0400
commitbe74de0236a3544959722b3a8ff9c9ca26c73d13 (patch)
tree292d0abda239cd3966840b7e93568580209bf189 /MediaBrowser.Controller/Sync/SyncedFileInfo.cs
parentaa079120059699f4778d80f55e68883d75d26b3a (diff)
parent2626b6f3729097e083f381936738d17335f48f1c (diff)
Merge pull request #1058 from MediaBrowser/dev
3.0.5569.0
Diffstat (limited to 'MediaBrowser.Controller/Sync/SyncedFileInfo.cs')
-rw-r--r--MediaBrowser.Controller/Sync/SyncedFileInfo.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Sync/SyncedFileInfo.cs b/MediaBrowser.Controller/Sync/SyncedFileInfo.cs
new file mode 100644
index 0000000000..550af2d554
--- /dev/null
+++ b/MediaBrowser.Controller/Sync/SyncedFileInfo.cs
@@ -0,0 +1,29 @@
+using MediaBrowser.Model.MediaInfo;
+using System.Collections.Generic;
+
+namespace MediaBrowser.Controller.Sync
+{
+ public class SyncedFileInfo
+ {
+ /// <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; }
+ /// <summary>
+ /// Gets or sets the required HTTP headers.
+ /// </summary>
+ /// <value>The required HTTP headers.</value>
+ public Dictionary<string, string> RequiredHttpHeaders { get; set; }
+
+ public SyncedFileInfo()
+ {
+ RequiredHttpHeaders = new Dictionary<string, string>();
+ }
+ }
+}