survey-webapp/SurveyBackend/SurveyBackend.Core/Models/User.cs
2025-03-25 19:42:06 +05:00

13 lines
No EOL
313 B
C#

namespace SurveyBackend.Core.Models;
public class User
{
public int Id { get; set; }
public string Username { get; set; }
public string Email { get; set; }
public byte[] PasswordSalt { get; set; }
public byte[] PasswordHash { get; set; }
public ICollection<Group> Groups { get; set; }
}