mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 04:04:19 -04:00
11 lines
204 B
C#
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; }
|
|
}
|