1234567891011121314151617181920212223 |
- 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
- }
- }
|