namespace Connected.Entities.Annotations { [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)] public sealed class EntityAttribute : MappingAttribute { public string? Id { get; set; } public Type? RuntimeType { get; set; } } }