Files
podnoms/server/Services/Auth/ApplicationUser.cs
2018-04-25 18:50:29 +01:00

12 lines
389 B
C#

using Microsoft.AspNetCore.Identity;
namespace PodNoms.Api.Services.Auth {
public class ApplicationUser : IdentityUser {
// Extended Properties
public string FirstName { get; set; }
public string LastName { get; set; }
public long? FacebookId { get; set; }
public string PictureUrl { get; set; }
public string Slug { get; set; }
}
}