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/core/model/my_balance/AdvanceModel.dart

19 lines
381 B
Dart

import 'package:diplomaticquarterapp/core/model/hospitals/hospitals_model.dart';
class AdvanceModel {
String fileNumber;
String amount;
HospitalsModel hospitalsModel;
String email;
String note;
String depositorName;
AdvanceModel(
{this.amount,
this.email,
this.note,
this.hospitalsModel,
this.fileNumber,
this.depositorName});
}