9 lines
189 B
C#

namespace UserManagement.Application.Dtos.Incomming
{
public class CreatingUserRolesDto
{
public int UserId { get; set; }
public int RoleId { get; set; }
}
}