source: resTools_backend/backend/DTOs/CreateUserRequest.cs@ 49b0bbd

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

move files

  • Property mode set to 100644
File size: 235 bytes
Line 
1using Newtonsoft.Json;
2
3namespace backend.DTOs
4{
5 public class CreateUserRequest
6 {
7 [JsonProperty]
8 public string Email { get; set; }
9
10 [JsonProperty]
11 public string Password { get; set; }
12 }
13}
Note: See TracBrowser for help on using the repository browser.