OpenApiIgnoreEnumAttribute.cs 281 B

1234567891011
  1. using System;
  2. namespace Jellyfin.Data.Attributes;
  3. /// <summary>
  4. /// Attribute to specify that the enum value is to be ignored when generating the openapi spec.
  5. /// </summary>
  6. [AttributeUsage(AttributeTargets.Field)]
  7. public sealed class OpenApiIgnoreEnumAttribute : Attribute
  8. {
  9. }