mirror of
https://github.com/Ikatono/ComiServ.git
synced 2025-10-28 20:45:35 -05:00
13 lines
295 B
C#
13 lines
295 B
C#
using ComiServ.Entities;
|
|
|
|
namespace ComiServ.Models
|
|
{
|
|
public class UserCreateRequest
|
|
{
|
|
public string Username { get; set; }
|
|
public UserTypeEnum UserType { get; set; }
|
|
//NOT HASHED do not persist this object
|
|
public string Password { get; set; }
|
|
}
|
|
}
|