2025-08-09 13:37:34 +02:00

11 lines
281 B
C#

using System.ComponentModel.DataAnnotations;
namespace ApplicationHub.Data.InMemory.Authentication.Entities;
public class GroupDto
{
[Key]
public Guid Id { get; set; }
public string Name { get; set; } = "";
public List<RightDto> Rights { get; set; } = new();
}