aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/CacheMode.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-06-03 13:04:45 +0200
committerBond-009 <bond.009@outlook.com>2020-06-03 13:04:45 +0200
commitf404e915eeef6cc9b05c6d006569b6d3a3e54eee (patch)
tree30f3de8d2f494bfc1c42f262d17096105062cb11 /MediaBrowser.Common/Net/CacheMode.cs
parent40502a33e0f0e3c84487be6d3eff2be35c1448ad (diff)
Enable StyleCop for MediaBrowser.Common
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
+ }
+}