mirror of
https://github.com/Ikatono/ComiServ.git
synced 2025-10-28 20:45:35 -05:00
11 lines
229 B
C#
11 lines
229 B
C#
using ComiServ.Entities;
|
|
|
|
namespace ComiServ.Models;
|
|
|
|
public class UserModifyRequest
|
|
{
|
|
public string Username { get; set; }
|
|
public string? NewUsername { get; set; }
|
|
public UserTypeEnum? NewUserType { get; set; }
|
|
}
|