mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-30 20:50:27 +08:00
9 lines
240 B
C#
9 lines
240 B
C#
namespace Foxel.Models.Request.Auth;
|
|
|
|
public record RegisterRequest
|
|
{
|
|
public string UserName { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
}
|