mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 12:05:51 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
11 lines
222 B
C#
11 lines
222 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kavita.Models.DTOs;
|
|
#nullable enable
|
|
|
|
public sealed record UpdateRbsDto
|
|
{
|
|
public required string Username { get; init; }
|
|
public IList<string>? Roles { get; init; }
|
|
}
|