source: Application/Models/DataTransferObjects/LoginDTO.cs

Last change on this file was f5f7c24, checked in by 192011 <mk.snicker@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 655 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel.DataAnnotations;
4using System.Diagnostics.CodeAnalysis;
5using System.Linq;
6using System.Text;
7using System.Threading.Tasks;
8
9namespace Models.DataTransferObjects
10{
11 public class LoginDTO
12 {
13 [EmailAddress]
14 [Required]
15 public string Email { get; set; }
16 public int UserId { get; set; }
17 [Required]
18 public string Password { get; set; }
19 public string? FirstName { get; set; }
20 public bool ValidPassword { get; set; }
21 public bool ValidEmail { get; set; }
22 public string? Claim { get; set; }
23
24 }
25}
Note: See TracBrowser for help on using the repository browser.