From 4e2979cd64fc630fecf1f474d5180d5c832edf12 Mon Sep 17 00:00:00 2001 From: Mohammad Aljammal Date: Wed, 16 Dec 2020 19:03:34 +0200 Subject: [PATCH] fix merge issues --- lib/core/model/ImagesInfo.dart | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 lib/core/model/ImagesInfo.dart diff --git a/lib/core/model/ImagesInfo.dart b/lib/core/model/ImagesInfo.dart new file mode 100644 index 00000000..5ab48fb3 --- /dev/null +++ b/lib/core/model/ImagesInfo.dart @@ -0,0 +1,6 @@ +class ImagesInfo { + final String imageAr; + final String imageEn; + + ImagesInfo({this.imageAr, this.imageEn}); +}