mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-29 18:31:27 +00:00
10 lines
330 B
C#
10 lines
330 B
C#
namespace SabreTools.Data.Attributes
|
|
{
|
|
/// <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 { }
|
|
}
|