8 lines
214 B
C#
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; }
|
|
} |