class TopBannerModel {
final int id;
final String image;
TopBannerModel({
required this.id,
required this.image,
});
factory TopBannerModel.fromJson(Map<String, dynamic> json) {
return TopBannerModel(
id: json['id'],
image: json['image'],
);
}