mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-06-01 05:30:31 +08:00
8 lines
179 B
C#
8 lines
179 B
C#
namespace Foxel.Models.Request.Auth;
|
|
|
|
public class LoginRequest
|
|
{
|
|
public string Email { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
}
|