Merge pull request #30 from maxcampolo/dev

SegmentioItem public getters
This commit is contained in:
Serhii Butenko 2016-12-09 18:20:28 +02:00 committed by GitHub
commit dd65378ed5
1 changed files with 5 additions and 5 deletions

View File

@ -12,11 +12,11 @@ import UIKit
public struct SegmentioItem {
var title: String?
var image: UIImage?
var badgeCount: Int?
var badgeColor: UIColor?
public var title: String?
public var image: UIImage?
public var badgeCount: Int?
public var badgeColor: UIColor?
public init(title: String?, image: UIImage?) {
self.title = title
self.image = image