using System; namespace Infrastructure.Domain { [AttributeUsage(AttributeTargets.Class)] public class GroupAttribute : Attribute { public string Name { get; } public string Number { get; } public GroupAttribute(string name, string number) { this.Name = name; this.Number = number; } } }