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; }