mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-16 13:55:32 +00:00
9 lines
243 B
C#
9 lines
243 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 { }
|
|
}
|