Created
July 30, 2020 18:21
-
-
Save Abhishek9634/586eb4232a270307781abe802320d65f 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 BottomStackItem { | |
var title: String | |
var image: String | |
var isSelected: Bool | |
init(title: String, | |
image: String, | |
isSelected: Bool = false) { | |
self.title = title | |
self.image = image | |
self.isSelected = isSelected | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment