diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-06-03 13:04:45 +0200 |
|---|---|---|
| committer | Bond-009 <bond.009@outlook.com> | 2020-06-03 13:04:45 +0200 |
| commit | f404e915eeef6cc9b05c6d006569b6d3a3e54eee (patch) | |
| tree | 30f3de8d2f494bfc1c42f262d17096105062cb11 /MediaBrowser.Common/Net/CacheMode.cs | |
| parent | 40502a33e0f0e3c84487be6d3eff2be35c1448ad (diff) | |
Enable StyleCop for MediaBrowser.Common
Diffstat (limited to 'MediaBrowser.Common/Net/CacheMode.cs')
| -rw-r--r-- | MediaBrowser.Common/Net/CacheMode.cs | 11 |
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 + } +} |
