Skip to content

Instantly share code, notes, and snippets.

@gmartinezsan
Created January 31, 2018 05:01
Show Gist options
  • Save gmartinezsan/33372a5ddaac0f0b16c82fef690cadb9 to your computer and use it in GitHub Desktop.
Save gmartinezsan/33372a5ddaac0f0b16c82fef690cadb9 to your computer and use it in GitHub Desktop.
using Microsoft.AspNetCore.Identity;
namespace BooksWebApi.Entities
{
public class User : IdentityUser
{
public string FirstName { get; set; }
public string LastName { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment