15 lines
371 B
C#
15 lines
371 B
C#
namespace Project.Model;
|
|
|
|
public class CreateLogin
|
|
{
|
|
public string NewLoginName { get; set; }
|
|
public string NewMasterPassword { get; set; }
|
|
public string NewEmail { get; set; }
|
|
|
|
public CreateLogin(string username, string password, string email)
|
|
{
|
|
NewLoginName = username;
|
|
NewMasterPassword = password;
|
|
NewEmail = email;
|
|
}
|
|
} |