16 lines
360 B
C#
16 lines
360 B
C#
namespace UserManagement.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 ICollection<ReadingRoleDto> UserRoles { get; set; }
|
|
}
|
|
}
|