Files
SabreTools.Models/NoFilterAttribute.cs
2023-09-04 00:07:54 -04:00

8 lines
233 B
C#

namespace SabreTools.Models
{
/// <summary>
/// Marks a key as unable to be filtered on
/// </summary>
[System.AttributeUsage(System.AttributeTargets.Field)]
public class NoFilterAttribute : System.Attribute { }
}