14 lines
280 B
C#
14 lines
280 B
C#
namespace UserManagement.Application.Dtos.Outgoing
|
|
{
|
|
public class ReadingUserRolesDto
|
|
{
|
|
public int UserId { get; set; }
|
|
|
|
public string UserName { get; set; }
|
|
|
|
public int RoleId { get; set; }
|
|
|
|
public string RoleName { get; set; }
|
|
}
|
|
}
|