hanyadikhetvan-dotnethf/HanyadikHetVan/DTO/UserDTO.cs
Torma Kristóf 0b01340e88
All checks were successful
continuous-integration/drone/push Build is passing
user mgmt done
2021-05-19 19:39:46 +02:00

15 lines
259 B
C#

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; }
}
}