refactor(Login): Id in UserId umbenennen

This commit is contained in:
Developer 02 2025-04-29 11:39:21 +02:00
parent 3d1966a715
commit 3ae1b94eb7
2 changed files with 3 additions and 3 deletions

View File

@ -6,8 +6,8 @@ namespace EnvelopeGenerator.GeneratorAPI.Models;
/// Repräsentiert ein Login-Modell mit erforderlichem Passwort und optionaler ID und Benutzername. /// Repräsentiert ein Login-Modell mit erforderlichem Passwort und optionaler ID und Benutzername.
/// </summary> /// </summary>
/// <param name="Password">Das erforderliche Passwort für das Login.</param> /// <param name="Password">Das erforderliche Passwort für das Login.</param>
/// <param name="Id">Die optionale ID des Benutzers.</param> /// <param name="UserId">Die optionale ID des Benutzers.</param>
/// <param name="Username">Der optionale Benutzername.</param> /// <param name="Username">Der optionale Benutzername.</param>
public record Login([Required] string Password, int? Id = null, string? Username = null) public record Login([Required] string Password, int? UserId = null, string? Username = null)
{ {
} }

View File

@ -22,7 +22,7 @@
"https": { "https": {
"commandName": "Project", "commandName": "Project",
"dotnetRunMessages": true, "dotnetRunMessages": true,
"launchBrowser": true, "launchBrowser": false,
"launchUrl": "swagger", "launchUrl": "swagger",
"applicationUrl": "https://localhost:7174;http://localhost:5131", "applicationUrl": "https://localhost:7174;http://localhost:5131",
"environmentVariables": { "environmentVariables": {