Files
CostCalculationItem/IRaCIS.Core.Application.Contracts/Doctor/DTO/DoctorAccountRegisterDTO.cs
T
2022-03-28 09:57:06 +08:00

12 lines
323 B
C#

using System;
namespace IRaCIS.Application.ViewModels
{
public class DoctorAccountRegisterDTO : DoctorAccountLoginDTO
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string EMail { get; set; }
public DateTime RegisterTime { get; set; }
}
}