NumericWatcherAttribute.cs 223 B

1234567891011121314
  1. using System;
  2. namespace Model
  3. {
  4. public class NumericWatcherAttribute : Attribute
  5. {
  6. public NumericType NumericType { get; }
  7. public NumericWatcherAttribute(NumericType type)
  8. {
  9. this.NumericType = type;
  10. }
  11. }
  12. }