mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 05:30:13 +01:00
Add sign in backend
This commit is contained in:
9
WebApp/DTOs/LoginDto.cs
Normal file
9
WebApp/DTOs/LoginDto.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace WebApp.DTOs;
|
||||
|
||||
public record class LoginDto
|
||||
(
|
||||
[Required] string Email,
|
||||
[Required] string Password
|
||||
);
|
||||
Reference in New Issue
Block a user