10 lines
204 B
C#
10 lines
204 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs;
|
|
#nullable enable
|
|
|
|
public class UpdateRbsDto
|
|
{
|
|
public required string Username { get; init; }
|
|
public IList<string>? Roles { get; init; }
|
|
}
|