33 lines
839 B
C#
33 lines
839 B
C#
namespace TIAMWebApp.Shared.Application.Models.PageModels
|
|
{
|
|
public class RegistrationModel
|
|
{
|
|
|
|
public string? Email { get; set; }
|
|
|
|
public string? Password { get; set; }
|
|
|
|
public string? PhoneNumber { get; set; }
|
|
|
|
public Guid? ReferralId { get; set; }
|
|
|
|
public RegistrationModel() { }
|
|
|
|
public RegistrationModel(string email, string password, string phoneNumber, Guid referralId)
|
|
{
|
|
Email = email;
|
|
Password = password;
|
|
PhoneNumber = phoneNumber;
|
|
ReferralId = referralId;
|
|
}
|
|
|
|
public RegistrationModel(string email, string password, string phoneNumber)
|
|
{
|
|
Email = email;
|
|
Password = password;
|
|
PhoneNumber = phoneNumber;
|
|
}
|
|
|
|
}
|
|
}
|