Skip to content

Instantly share code, notes, and snippets.

@IsaAliev
Created October 18, 2020 08:57
Show Gist options
  • Save IsaAliev/f7daa7a3321f71d88694bb260217160f to your computer and use it in GitHub Desktop.
Save IsaAliev/f7daa7a3321f71d88694bb260217160f to your computer and use it in GitHub Desktop.
class NamedImageCellModel: CollectionItemViewModel {
let name: String
let imageFilePath: String
init(name: String, imageFilePath: String) {
self.name = name
self.imageFilePath = imageFilePath
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment