Typically, when developing your model, the best way to start when you have design is to look at the data associated with your view. Let's look at our app design again:
The items (UICollectionViewCell) displayed in the grid are each supported by some data. Looking at the design, we see that each item needs an image and a name (cuisine). Therefore, we need to create a model, called ExploreItem, with two properties, specifically image and name.
In the model camp, we will create three files: ExploreData.plist, ExploreItem.swift, and ExploreDataManager.swift.