mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-04-05 05:51:27 +02:00
8 lines
233 B
C#
Executable File
8 lines
233 B
C#
Executable File
namespace DotBased.ASP.Auth.Domains;
|
|
|
|
public class LoginModel
|
|
{
|
|
public string UserName { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
} |