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