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-mohemm-flutter-app/lib/models/mowadhafhi/mowadhafhi_attachement_requ...

23 lines
616 B
Dart

class MowadhafhiRequestAttachment {
String? base64Data;
String? fileName;
String? contentType;
MowadhafhiRequestAttachment(
{this.base64Data, this.fileName, this.contentType});
MowadhafhiRequestAttachment.fromJson(Map<String, dynamic> json) {
base64Data = json['Base64Data'];
fileName = json['FileName'];
contentType = json['ContentType'];
}
Map<String, dynamic> toJson() {
Map<String, dynamic> data = new Map<String, dynamic>();
data['Base64Data'] = this.base64Data;
data['FileName'] = this.fileName;
data['ContentType'] = this.contentType;
return data;
}
}