12 lines
323 B
C#
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; }
|
|
}
|
|
} |