2024-07-10 09:00:36 +02:00

15 lines
320 B
C#

namespace Project.Application.DTOs.Outgoing
{
public class ReadingUserDto
{
public int Id { get; set; }
public string UserName { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public ReadingRoleDto? Role { get; set; }
}
}