Added user management endpoints
This commit is contained in:
8
src/HopFrame.Api/Models/UserCreator.cs
Normal file
8
src/HopFrame.Api/Models/UserCreator.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace HopFrame.Api.Models;
|
||||
|
||||
public class UserCreator {
|
||||
public string Username { get; set; }
|
||||
public string Email { get; set; }
|
||||
public string Password { get; set; }
|
||||
public virtual List<string> Permissions { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user