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 SignInPage : PageBase { public string Title { get; set; } public FormItem Email { get; set; } public FormItem Password { get; set; } public string DontHaveAnAccount { get; set; } public Link SignUpLink { get; set; } public FormItem Submit { get; set; } public override int GetHashCode() { throw new NotImplementedException(); } } }