Kavita/API/DTOs/UpdateRBSDto.cs
2023-12-13 17:16:54 -08:00

11 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; }
}