12 lines
209 B
C#
12 lines
209 B
C#
|
namespace ET
|
|||
|
{
|
|||
|
public class NumericWatcherAttribute : BaseAttribute
|
|||
|
{
|
|||
|
public NumericType NumericType { get; }
|
|||
|
|
|||
|
public NumericWatcherAttribute(NumericType type)
|
|||
|
{
|
|||
|
this.NumericType = type;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|