namespace Connected.Entities.Annotations { [AttributeUsage(AttributeTargets.Property)] public sealed class PrimaryKeyAttribute : Attribute { public bool Identity { get; set; } = true; } }