user mgmt done
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-05-19 19:39:46 +02:00
parent 634488c2d8
commit 0b01340e88
6 changed files with 68 additions and 10 deletions

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace HanyadikHetVan.DTO
{
public class UserDTO
{
public string Email { get; set; }
public string Password { get; set; }
}
}