8 lines
178 B
C#
8 lines
178 B
C#
using System;
|
|
|
|
namespace Essgee.Utilities
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
|
|
public class StateRequiredAttribute : Attribute { }
|
|
}
|