mirror of
https://github.com/project-redbud/FunGame-Server.git
synced 2025-04-22 12:09:36 +08:00
17 lines
427 B
C#
17 lines
427 B
C#
namespace Milimoe.FunGame.WebAPI.Models
|
|
{
|
|
public class LoginDTO
|
|
{
|
|
public string Username { get; set; } = "";
|
|
public string Password { get; set; } = "";
|
|
}
|
|
|
|
public class RegDTO
|
|
{
|
|
public string Username { get; set; } = "";
|
|
public string Password { get; set; } = "";
|
|
public string Email { get; set; } = "";
|
|
public string VerifyCode { get; set; } = "";
|
|
}
|
|
}
|