using System.Collections.Generic; using MediatR; namespace API.DTOs; public class UpdateUserRole : IRequest { public string Username { get; init; } public IList Roles { get; init; } }