//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace Jellyfin.Data.Attributes
{
using System;
///
/// Attribute to specify that the enum value is to be ignored when generating the openapi spec.
///
[AttributeUsage(AttributeTargets.Field)]
public sealed class OpenApiIgnoreEnumAttribute : Attribute
{
}
}