mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-09 02:16:55 +00:00
8 lines
242 B
C#
8 lines
242 B
C#
namespace SabreTools.Data.Attributes
|
|
{
|
|
/// <summary>
|
|
/// Marks a key as unable to be filtered on
|
|
/// </summary>
|
|
[System.AttributeUsage(System.AttributeTargets.Field)]
|
|
public class NoFilterAttribute : System.Attribute { }
|
|
} |