test: add TestType enum
This commit is contained in:
parent
33f80dc3c1
commit
b3b98a5cc8
17
tests/Jellyfin.Api.Tests/ModelBinders/TestType.cs
Normal file
17
tests/Jellyfin.Api.Tests/ModelBinders/TestType.cs
Normal file
|
@ -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
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user