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