aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Attributes/OpenApiIgnoreEnumAttribute.cs
blob: ff613d9f8d514427b2da43fdaf89d6a9c8ad6c1c (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace Jellyfin.Data.Attributes;

/// <summary>
/// Attribute to specify that the enum value is to be ignored when generating the openapi spec.
/// </summary>
[AttributeUsage(AttributeTargets.Field)]
public sealed class OpenApiIgnoreEnumAttribute : Attribute
{
}