source: resTools_backend/backend/DTOs/AuthenticateRequest.cs@ 13f1472

Last change on this file since 13f1472 was 7a983b0, checked in by Danilo <danilo.najkov@…>, 2 years ago

move files

  • Property mode set to 100644
File size: 219 bytes
Line 
1namespace backend.Models;
2
3using System.ComponentModel.DataAnnotations;
4
5public class AuthenticateRequest
6{
7 [Required]
8 public string Email { get; set; }
9
10 [Required]
11 public string Password { get; set; }
12}
Note: See TracBrowser for help on using the repository browser.