mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +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 { }
|
|
} |