MonitoredPropertyAttribute.cs 359 B

1234567891011
  1. namespace Quadarax.Foundation.Core.QMonitor.Attributes
  2. {
  3. [AttributeUsage(AttributeTargets.Property)]
  4. public class MonitoredPropertyAttribute : Attribute
  5. {
  6. public string Name { get; set; }
  7. public string Label { get; set; }
  8. public string Description { get; set; }
  9. public int Order { get; set; }
  10. }
  11. }