mirror of
https://github.com/azaion/admin.git
synced 2026-04-22 10:26:34 +00:00
8 lines
162 B
C#
8 lines
162 B
C#
namespace Azaion.Common.Requests;
|
|
|
|
public class LoginRequest
|
|
{
|
|
public string Email { get; set; } = null!;
|
|
public string Password { get; set; } = null!;
|
|
}
|