mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 08:18:49 -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; }
|
|
}
|
|
} |