NumericWatcherAttribute.cs 214 B

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