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.
28 lines
661 B
Dart
28 lines
661 B
Dart
import 'package:diplomaticquarterapp/core/model/blooddonation/get_all_cities.dart';
|
|
import 'package:diplomaticquarterapp/core/model/hospitals/hospitals_model.dart';
|
|
|
|
class AdvanceModel {
|
|
String? fileNumber;
|
|
String? amount;
|
|
HospitalsModel? hospitalsModel;
|
|
String? email;
|
|
String? note;
|
|
String? depositorName;
|
|
String? mobileNumber;
|
|
String? patientName;
|
|
int? projectID;
|
|
CitiesModel? citiessModel;
|
|
|
|
AdvanceModel(
|
|
{this.amount,
|
|
this.email,
|
|
this.note,
|
|
this.hospitalsModel,
|
|
this.fileNumber,
|
|
this.depositorName,
|
|
this.mobileNumber,
|
|
this.patientName,
|
|
this.projectID,
|
|
this.citiessModel});
|
|
}
|