using Core.Abstractions.DomainObjects; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Core.DomainObjects.Pages { public class SignUpPage : PageBase { public string Title { get; set; } public FormItem Username { get; set; } public FormItem Email { get; set; } public FormItem ReEmail { get; set; } public FormItem Password { get; set; } public FormItem RePassword { get; set; } public string AcceptTermsAndConditions { get; set; } public FormItem Submit { get; set; } public override int GetHashCode() { throw new NotImplementedException(); } } }