mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
8 lines
231 B
C#
8 lines
231 B
C#
|
|
namespace SabreTools.Models
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Marks a property as required on write
|
||
|
|
/// </summary>
|
||
|
|
[System.AttributeUsage(System.AttributeTargets.Field)]
|
||
|
|
public class NoFilterAttribute : System.Attribute { }
|
||
|
|
}
|