namespace UnivateProperties_API.Model.Users { public class User : BaseEntity { #region Constructor public User() { } #endregion Constructor #region Properties public string Name { get; set; } public string Surname { get; set; } public string Username { get; set; } public string Role { get; set; } public byte[] PasswordHash { get; set; } public byte[] PasswordSalt { get; set; } public bool Verified { get; set; } public string Token { get; set; } #endregion Properties } }