Files
FACULTATE-HEALTHCARE_MANAGER/frontend/Models/AppointmentManagementModel.cs
T
ElenitaMLG 7e38d60802 Dashboard Page - Appointments:
- create separate dashboard components for doctor and patient
- add appointments to dashboard components
- add code to backend for appointments retrieval
2024-04-30 12:48:19 +03:00

8 lines
218 B
C#

namespace HealthcareManagerUiWebAssem.Models;
public class AppointmentManagementModel
{
public Guid DoctorId { get; set; }
public Guid PatientId { get; set; }
public DateTime Appointment { get; set; }
}