aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Api.Tests/ModelBinders/TestType.cs
blob: 544a74637af7b8495a1e3220ff9e063c8d6124c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
    }
}