8 lines
255 B
C#
8 lines
255 B
C#
namespace HealthcareManagerUiWebAssem.Models;
|
|
|
|
public class NewAppointmentModel
|
|
{
|
|
public Guid DoctorId { get; set; } = Guid.Empty;
|
|
public Guid PatientId { get; set; } = Guid.Empty;
|
|
public DateTime Appointment { get; set; } = DateTime.Now;
|
|
} |