Profile model working

This commit is contained in:
Fergal Moran
2018-04-22 19:36:08 +01:00
parent 6da5c22904
commit 07eced07ff
16 changed files with 286 additions and 39 deletions

View File

@@ -1,6 +1,6 @@
namespace PodNoms.Api.Models.ViewModels {
public class ProfileViewModel {
public int Id { get; set; }
public string Id { get; set; }
public string Slug { get; set; }
public string Email { get; set; }
public string Name { get; set; }

View File

@@ -4,7 +4,6 @@ namespace PodNoms.Api.Models.ViewModels {
public string Password { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Location { get; set; }
}
}