Files
podnoms/server/Services/Auth/ApplicationUser.cs
2018-05-09 09:48:07 +01:00

13 lines
458 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; }
public string FullName { get => $"{FirstName} {LastName}"; }
}
}