SurveyVista/Model/ApplicationUser.cs
2024-05-04 20:19:22 +02:00

16 lines
385 B
C#

using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Identity;
namespace Model
{
public class ApplicationUser:IdentityUser
{
public string? FirstName { get; set; }
public string? LastName { get; set; }
}
}