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:
![](https://static.packt-cdn.com/products/9781789348668/graphics/assets/05165db9-ed24-4704-820f-fb8385759265.png)
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.