namespace Connected.Entities.Annotations { [AttributeUsage(AttributeTargets.Property)] public sealed class NumericAttribute : Attribute { public int Percision { get; set; } public int Scale { get; set; } } }