mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-02-11 18:24:02 +00:00
12 lines
389 B
C#
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; }
|
|
}
|
|
} |