Last active
July 29, 2018 19:23
-
-
Save croossin/6223047fe8971e456a79f31c57a727cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class OverviewMintsightViewModel { | |
var type = Variable<MintsightType>(.unknown) | |
var thumbnailImage: Variable<UIImage?> = Variable(nil) | |
var title = Variable<String>("") | |
var description = Variable<String>("") | |
var state:Variable<CardState> = Variable<CardState>(.hasData) | |
init() { ... } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment