feat(api): UserController - CRUD, RoleController

This commit is contained in:
Mikhail Trubnikov
2023-12-05 16:32:34 +10:00
parent 7fb1804366
commit 72a171f823
28 changed files with 380 additions and 21 deletions

View File

@@ -0,0 +1,11 @@
namespace PARR.API.Contracts.V1.Requests
{
public class UserRequest
{
public required string Ip { get; set; }
public required string Name { get; set; }
public string Description { get; set; } = string.Empty;
}
}