aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Sync/SendFileResult.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-13 01:29:39 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-13 01:29:39 -0400
commit4309455c37c25eb7b4ab89920358d7cced1ebddc (patch)
tree79b87713dda292fbd33d902bf6a49ceef5b0ed36 /MediaBrowser.Controller/Sync/SendFileResult.cs
parentb7b28ffd31892dac13004199766262126d2785c5 (diff)
update server sync
Diffstat (limited to 'MediaBrowser.Controller/Sync/SendFileResult.cs')
-rw-r--r--MediaBrowser.Controller/Sync/SendFileResult.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Sync/SendFileResult.cs b/MediaBrowser.Controller/Sync/SendFileResult.cs
new file mode 100644
index 000000000..62753444a
--- /dev/null
+++ b/MediaBrowser.Controller/Sync/SendFileResult.cs
@@ -0,0 +1,18 @@
+using MediaBrowser.Model.MediaInfo;
+
+namespace MediaBrowser.Controller.Sync
+{
+ public class SendFileResult
+ {
+ /// <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; }
+ }
+}