mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-23 00:38:21 -05:00
10 lines
222 B
C#
10 lines
222 B
C#
|
using System;
|
|||
|
|
|||
|
namespace TriInspector
|
|||
|
{
|
|||
|
[AttributeUsage((AttributeTargets.Field | AttributeTargets.Property))]
|
|||
|
public class RequiredAttribute : Attribute
|
|||
|
{
|
|||
|
public string Message { get; set; }
|
|||
|
}
|
|||
|
}
|