survey-webapp/SurveyBackend/SurveyBackend.Core/Models/User.cs

15 lines
No EOL
344 B
C#

using Microsoft.AspNetCore.Identity;
namespace SurveyBackend.Core.Models;
public class User
{
public int Id { get; set; }
public string Email { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Password { get; set; }
public ICollection<Group> Groups { get; set; }
}