mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 07:20:32 -04:00
11 lines
212 B
C#
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; }
|
|
}
|