namespace Quadarax.Foundation.Core.QMonitor.Attributes { [AttributeUsage(AttributeTargets.Property)] public class MonitoredPropertyAttribute : Attribute { public string Name { get; set; } public string Label { get; set; } public string Description { get; set; } public int Order { get; set; } } }