Kavita/API/DTOs/UpdateRBSDto.cs
2025-05-04 07:14:44 -07:00

11 lines
212 B
C#

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