Created
April 3, 2019 04:40
-
-
Save Abhishek9634/b283c31caa89e9beda379e3a927c0c7e 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 DropDownCellModel { | |
var item: PerformanceDateGroup | |
var isSelected: Bool | |
init(item: PerformanceDateGroup, isSelected: Bool = false) { | |
self.item = item | |
self.isSelected = isSelected | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment