using System.ComponentModel.DataAnnotations; namespace ApplicationHub.Domain.Contracts.Authentication.Models; public class Group { [Key] public Guid Id { get; set; } public string Name { get; set; } = ""; public IEnumerable Rights { get; set; } = new List(); }