mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 14:26:30 +00:00
add repository with mysql and entities
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user