Created user endpoint tests and documentation

This commit is contained in:
2024-12-23 18:12:21 +01:00
parent b8b0d571ab
commit 99d39be9ac
4 changed files with 852 additions and 0 deletions

View File

@@ -67,6 +67,16 @@ public class UserRegister {
}
```
## UserCreator
```csharp
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; }
}
```
## IPermissionOwner
```csharp
public interface IPermissionOwner;