mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-16 21:40:10 +00:00
9 lines
320 B
C#
9 lines
320 B
C#
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 { }
|
|
} |