Files
FACULTATE-HEALTHCARE_MANAGER/backend/Application/Endpoints/Appointments/AppointmentInformation.cs
T
2024-05-21 12:10:53 +03:00

8 lines
214 B
C#

namespace Application.Endpoints.Appointments;
public class AppointmentInformation
{
public Guid DoctorId { get; set; }
public Guid PatientId { get; set; }
public DateTime Appointment { get; set; }
}