TourIAm/TIAMWebApp/Shared/Models/PageModels/RegistrationModel.cs

40 lines
1001 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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;
}
}
}