Files
annotations/Web/Azaion.Web/Azaion.Repository/Entities/User.cs
T
2024-07-16 14:18:55 +03:00

13 lines
394 B
C#

namespace Azaion.Repository.Entities;
public class User
{
public Guid Id { get; set; }
public string Username { get; set; } = null!;
public string Email { get; set; } = null!;
public string PasswordHash { get; set; } = null!;
public string PasswordSalt { get; set; } = null!;
public DateTime CreatedDate { get; set; }
public DateTime UpdatedDate { get; set; }
}