reactredux/webapi/Core/DomainObjects/Pages/SingInPage.cs

27 lines
601 B
C#

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<SignInPage> {
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();
}
}
}