Dashboard Page - Appointments:
- create separate dashboard components for doctor and patient - add appointments to dashboard components - add code to backend for appointments retrieval
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace HealthcareManagerUiWebAssem.Models;
|
||||
|
||||
public class Appointment
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public string PatientId { get; set; }
|
||||
public string DoctorId { get; set; }
|
||||
public List<DateTime> AppointmentsList { get; set; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user