11 lines
281 B
C#
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();
|
|
} |