Finished database management and user authentication
This commit is contained in:
9
HopFrame.Database/Models/User.cs
Normal file
9
HopFrame.Database/Models/User.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace HopFrame.Database.Models;
|
||||
|
||||
public class User {
|
||||
public Guid Id { get; set; }
|
||||
public string Username { get; set; }
|
||||
public string Email { get; set; }
|
||||
public DateTime CreatedAt { get; set; }
|
||||
public IList<string> Permissions { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user