mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-11 02:55:27 +00:00
13 lines
458 B
C#
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}"; }
|
|
}
|
|
} |