namespace Connected.Annotations { [AttributeUsage(AttributeTargets.Property | AttributeTargets.Class | AttributeTargets.Interface)] public sealed class PriorityAttribute : Attribute { public PriorityAttribute(int value) { Value = value; } public int Value { get; } } }