13 lines
No EOL
306 B
C#
13 lines
No EOL
306 B
C#
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; }
|
|
} |