Creation user's endpoints

This commit is contained in:
2025-10-27 12:31:25 +01:00
parent 06c64a9f3f
commit 6a4760fb72
9 changed files with 254 additions and 2 deletions

View File

@@ -2,6 +2,6 @@
public class ConnectUserDto
{
public string? Username { get; set; }
public string? Name { get; set; }
public string? Password { get; set; }
}

View File

@@ -4,7 +4,6 @@ public class CreateUserDto
{
public string? Name { get; set; }
public string? Password { get; set; }
public string? Salt { get; set; }
public string? Fonction { get; set; }
public string? Email { get; set; }
}