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

17 lines
380 B
C#

using System;
using System.Collections.Generic;
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; }
}
}