Files

10 lines
326 B
C#
Raw Permalink Normal View History

namespace SabreTools.Data.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 { }
2025-11-14 09:06:59 -05:00
}