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/SearchInfoModel.dart

17 lines
411 B
Dart

import 'package:diplomaticquarterapp/core/model/hospitals/hospitals_model.dart';
import 'package:diplomaticquarterapp/models/Clinics/ClinicListResponse.dart';
class SearchInfo {
int? ProjectID;
int? ClinicID;
String? DoctorName;
String? SelectedDate;
String? SelectedTime;
String? currentLat;
String? currentLong;
DateTime? date;
HospitalsModel? hospital;
ListClinicCentralized? clinic;
}