You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PatientApp-KKUMC/lib/models/Appointments/InsertAppointmentRequest.dart

22 lines
502 B
Dart

import 'package:diplomaticquarterapp/models/Request.dart';
class InsertAppointmentRequest extends Request {
String AppointmentDate; // ???? "/Date(1577750400000)/"
int DoctorID;
int InitialSlotDuration;
String SelectedTime;
String StartTime;
String EndTime;
String TempValue;
int VisitFor;
int VisitType;
bool IsVirtual;
List<String> GeneralProcedureList;
String DeviceToken;
String DeviceType;
bool IsForLiveCare;
String OriginalClinicID;
String OriginalProjectID;
}