Torma Kristóf
0b01340e88
All checks were successful
continuous-integration/drone/push Build is passing
15 lines
259 B
C#
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; }
|
|
}
|
|
}
|