9 lines
189 B
C#
9 lines
189 B
C#
namespace UserManagement.Application.Dtos.Incomming
|
|
{
|
|
public class UpdatingUserRolesDto
|
|
{
|
|
public int UserId { get; set; }
|
|
public int RoleId { get; set; }
|
|
}
|
|
}
|