2024-09-06 10:59:27 +02:00

10 lines
189 B
C#

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