From 9c41e7bb18dcab700e81ae4842a2d7515248b143 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Fri, 25 Oct 2024 09:36:47 +0200 Subject: [PATCH] =?UTF-8?q?feat(API.Models):=20DTO=20erstellt,=20um=20sich?= =?UTF-8?q?=20sowohl=20=C3=BCber=20id-password=20als=20auch=20=C3=BCber=20?= =?UTF-8?q?username=20password=20anzumelden?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WorkFlow.API/Models/LoginDto.cs | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 WorkFlow.API/Models/LoginDto.cs diff --git a/WorkFlow.API/Models/LoginDto.cs b/WorkFlow.API/Models/LoginDto.cs new file mode 100644 index 0000000..05ae5fe --- /dev/null +++ b/WorkFlow.API/Models/LoginDto.cs @@ -0,0 +1,4 @@ +namespace WorkFlow.API.Models +{ + public record LogInDto(int? UserId, string? Username, string Password); +} \ No newline at end of file