mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 11:06:30 +00:00
13 lines
394 B
C#
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; }
|
|
}
|