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.
HMG_Patient_App/lib/models/Appointments/InsertAppointmentRequest.dart

21 lines
496 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;
bool? IsForLiveCare;
String? OriginalClinicID;
String? OriginalProjectID;
}