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/CompressionMethods.cs | |
| parent | 40502a33e0f0e3c84487be6d3eff2be35c1448ad (diff) | |
Enable StyleCop for MediaBrowser.Common
Diffstat (limited to 'MediaBrowser.Common/Net/CompressionMethods.cs')
| -rw-r--r-- | MediaBrowser.Common/Net/CompressionMethods.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Net/CompressionMethods.cs b/MediaBrowser.Common/Net/CompressionMethods.cs new file mode 100644 index 000000000..39b72609f --- /dev/null +++ b/MediaBrowser.Common/Net/CompressionMethods.cs @@ -0,0 +1,15 @@ +#pragma warning disable CS1591 +#pragma warning disable SA1602 + +using System; + +namespace MediaBrowser.Common.Net +{ + [Flags] + public enum CompressionMethods + { + None = 0b00000001, + Deflate = 0b00000010, + Gzip = 0b00000100 + } +} |
