Kavita/API/DTOs/UpdateRBSDto.cs
2025-05-04 08:41:29 -05:00

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