Added user management endpoints

This commit is contained in:
2024-12-22 17:32:09 +01:00
parent 401dfc9909
commit ae74745108
9 changed files with 226 additions and 5 deletions

View 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; }
}