Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created February 4, 2019 19:46
Show Gist options
  • Save azamsharp/82ae32791b41ea6352eed034ed69dbb9 to your computer and use it in GitHub Desktop.
Save azamsharp/82ae32791b41ea6352eed034ed69dbb9 to your computer and use it in GitHub Desktop.
struct ArticleViewModel {
private let article: Article
}
extension ArticleViewModel {
init(_ article: Article) {
self.article = article
}
}
extension ArticleViewModel {
var title: String {
return self.article.title
}
var description: String {
return self.article.description
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment