mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 21:50:12 +01:00
10 lines
167 B
C#
10 lines
167 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace WebApp.DTOs;
|
|
|
|
public record class LoginDto
|
|
(
|
|
[Required] string Email,
|
|
[Required] string Password
|
|
);
|