diff options
Diffstat (limited to 'Data/Models/DTOs/Identity/RegisterDTO.cs')
| -rw-r--r-- | Data/Models/DTOs/Identity/RegisterDTO.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Data/Models/DTOs/Identity/RegisterDTO.cs b/Data/Models/DTOs/Identity/RegisterDTO.cs new file mode 100644 index 0000000..936b390 --- /dev/null +++ b/Data/Models/DTOs/Identity/RegisterDTO.cs @@ -0,0 +1,11 @@ +namespace Data.Models.DTOs.Identity +{ + public class RegisterDTO + { + public string UserName { get; set; } + public string Email { get; set; } + public string FirstName { get; set; } + public string LastName { get; set; } + public string Password { get; set; } + } +} |
