10 lines
266 B
C#
10 lines
266 B
C#
namespace phronCare.UIBlazor.Data.Login
|
|
{
|
|
public class Login2FAVM
|
|
{
|
|
public string UserName { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
public string Code { get; set; } = string.Empty;
|
|
}
|
|
}
|