diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2020-10-17 09:54:09 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-17 09:54:09 +0100 |
| commit | 3ae37deea8a84edfc0281c984027f8a8145c7a9c (patch) | |
| tree | 184916aaaf750c1cc100a33e69d239a5c622f1f9 /tests/Jellyfin.Api.Tests/ModelBinders/TestType.cs | |
| parent | abfddba5684b59acd0fa74c18f3037b5c7cda4be (diff) | |
| parent | 86090ab1f65c66958c897cacd04221c537053eb3 (diff) | |
Merge pull request #82 from jellyfin/master
Refreshing image
Diffstat (limited to 'tests/Jellyfin.Api.Tests/ModelBinders/TestType.cs')
| -rw-r--r-- | tests/Jellyfin.Api.Tests/ModelBinders/TestType.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/Jellyfin.Api.Tests/ModelBinders/TestType.cs b/tests/Jellyfin.Api.Tests/ModelBinders/TestType.cs new file mode 100644 index 000000000..544a74637 --- /dev/null +++ b/tests/Jellyfin.Api.Tests/ModelBinders/TestType.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Jellyfin.Api.Tests.ModelBinders +{ + public enum TestType + { +#pragma warning disable SA1602 // Enumeration items should be documented + How, + Much, + Is, + The, + Fish +#pragma warning restore SA1602 // Enumeration items should be documented + } +} |
