using System.Collections.Generic; namespace API.DTOs; #nullable enable public class UpdateRbsDto { public required string Username { get; init; } public IList? Roles { get; init; } }