17 lines
471 B
C#
17 lines
471 B
C#
// <copyright file="OpenApiIgnoreEnumAttribute.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Data.Attributes
|
|
{
|
|
using System;
|
|
|
|
/// <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
|
|
{
|
|
}
|
|
}
|