NumericWatcherAttribute.cs 193 B

123456789101112
  1. namespace ET
  2. {
  3. public class NumericWatcherAttribute : BaseAttribute
  4. {
  5. public int NumericType { get; }
  6. public NumericWatcherAttribute(int type)
  7. {
  8. this.NumericType = type;
  9. }
  10. }
  11. }