aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/CacheMode.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-06-13 15:09:02 -0600
committercrobibero <cody@robibe.ro>2020-06-13 15:09:02 -0600
commit6c7cc92a092eb9de044aad26b5e989aea0012869 (patch)
treed80c5c0b4395a9d2cafd92f8741cc6d3d9d651f9 /MediaBrowser.Common/Net/CacheMode.cs
parentfb068b76a12bf9de5de75a0b8079effcd0336ecf (diff)
parent0011e8df47380936742302ef40639a4626a780ed (diff)
Merge remote-tracking branch 'upstream/api-migration' into api-image2
Diffstat (limited to 'MediaBrowser.Common/Net/CacheMode.cs')
-rw-r--r--MediaBrowser.Common/Net/CacheMode.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Net/CacheMode.cs b/MediaBrowser.Common/Net/CacheMode.cs
new file mode 100644
index 000000000..78fa3bf9b
--- /dev/null
+++ b/MediaBrowser.Common/Net/CacheMode.cs
@@ -0,0 +1,11 @@
+#pragma warning disable CS1591
+#pragma warning disable SA1602
+
+namespace MediaBrowser.Common.Net
+{
+ public enum CacheMode
+ {
+ None = 0,
+ Unconditional = 1
+ }
+}