aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/StaticResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Common/Net/StaticResult.cs')
-rw-r--r--MediaBrowser.Common/Net/StaticResult.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Net/StaticResult.cs b/MediaBrowser.Common/Net/StaticResult.cs
new file mode 100644
index 000000000..0dd6372cf
--- /dev/null
+++ b/MediaBrowser.Common/Net/StaticResult.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace MediaBrowser.Common.Net
+{
+ public class StaticResult
+ {
+ public Stream Stream { get; set; }
+ }
+}