Tri-Inspector/Runtime/Attributes/RequiredAttribute.cs
2023-06-24 18:09:23 +04:00

13 lines
319 B
C#

using System;
namespace TriInspector
{
[AttributeUsage((AttributeTargets.Field | AttributeTargets.Property))]
public class RequiredAttribute : Attribute
{
public string Message { get; set; }
public string FixAction { get; set; }
public string FixActionName { get; set; }
}
}