10 lines
247 B
C#
10 lines
247 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace Hutopy.Infrastructure.Identity;
|
|
|
|
public class ApplicationUser : IdentityUser
|
|
{
|
|
public string FirstName { get; set; } = string.Empty;
|
|
public string LastName { get; set; } = string.Empty;
|
|
}
|