2024-09-12 15:42:28 +02:00

10 lines
198 B
C#

namespace UserManagement.Application.Dtos.Outgoing
{
public class ReadingRoleDto
{
public int Id { get; set; }
public required string Name { get; set; }
}
}