Tri-Inspector/Runtime/Attributes/RequiredAttribute.cs

13 lines
319 B
C#
Raw Normal View History

2022-01-15 11:25:12 -05:00
using System;
namespace TriInspector
{
[AttributeUsage((AttributeTargets.Field | AttributeTargets.Property))]
public class RequiredAttribute : Attribute
{
public string Message { get; set; }
2023-06-24 10:08:40 -04:00
public string FixAction { get; set; }
public string FixActionName { get; set; }
2022-01-15 11:25:12 -05:00
}
}