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

10 lines
225 B
C#

using System.ComponentModel.DataAnnotations;
namespace ApplicationHub.Data.InMemory.Authentication.Entities;
public class RightDto
{
[Key]
public Guid Id { get; set; }
public string Name { get; set; } = "";
}