mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 08:18:49 -05:00
13 lines
319 B
C#
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; }
|
|
}
|
|
} |