hanyadikhetvan-dotnethf/HanyadikHetVan/DTO/UserDTO.cs

15 lines
259 B
C#
Raw Normal View History

2021-05-19 19:39:46 +02:00
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; }
}
}