Add sign in backend

This commit is contained in:
AleksDw
2025-05-18 15:56:07 +02:00
parent d1117959cd
commit b70697abc3
3 changed files with 76 additions and 0 deletions

9
WebApp/DTOs/LoginDto.cs Normal file
View File

@@ -0,0 +1,9 @@
using System.ComponentModel.DataAnnotations;
namespace WebApp.DTOs;
public record class LoginDto
(
[Required] string Email,
[Required] string Password
);