26 lines
956 B
C#
26 lines
956 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace API.DTOs.Account;
|
|
#nullable enable
|
|
|
|
public record UpdateUserDto
|
|
{
|
|
public int UserId { get; set; }
|
|
public string Username { get; set; } = default!;
|
|
/// List of Roles to assign to user. If admin not present, Pleb will be applied.
|
|
/// If admin present, all libraries will be granted access and will ignore those from DTO.
|
|
public IList<string> Roles { get; init; } = default!;
|
|
/// <summary>
|
|
/// A list of libraries to grant access to
|
|
/// </summary>
|
|
public IList<int> Libraries { get; init; } = default!;
|
|
/// <summary>
|
|
/// An Age Rating which will limit the account to seeing everything equal to or below said rating.
|
|
/// </summary>
|
|
public AgeRestrictionDto AgeRestriction { get; init; } = default!;
|
|
/// <summary>
|
|
/// Email of the user
|
|
/// </summary>
|
|
public string? Email { get; set; } = default!;
|
|
}
|