refactor(Login): Id in UserId umbenennen
This commit is contained in:
parent
3d1966a715
commit
3ae1b94eb7
@ -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)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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": {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user