Files
SabreTools.Models/RequiredAttribute.cs

9 lines
320 B
C#
Raw Permalink Normal View History

2023-09-04 00:07:54 -04:00
namespace SabreTools.Models
{
/// <summary>
/// Marks a property as required on write
/// </summary>
/// <remarks>TODO: Use reflection to determine required fields on write</remarks>
[System.AttributeUsage(System.AttributeTargets.Property)]
public class RequiredAttribute : System.Attribute { }
}