Added EmailVerified to the User model and implmeneted Registration functionality #33

This commit is contained in:
amazing-username
2019-04-28 01:22:51 +00:00
parent 105ac85a66
commit 8a38417a51
3 changed files with 9 additions and 4 deletions
+2
View File
@@ -22,6 +22,8 @@ namespace Icarus.Models
public string Firstname { get; set; }
[JsonProperty("last_name")]
public string Lastname { get; set; }
[JsonProperty("email_verified")]
public bool EmailVerified { get; set; }
[JsonProperty("date_created")]
public DateTime DateCreated { get; set; }
[JsonProperty("last_login")]