You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
281 B
12 lines
281 B
1 year ago
|
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
|
||
|
{
|
||
|
}
|