Files
sodalive-ios/SodaLive/Sources/V2/Main/Content/MainContentTab.swift

13 lines
243 B
Swift

import Foundation
enum MainContentTab: CaseIterable, Hashable {
case recommendation
var title: String {
switch self {
case .recommendation:
return I18n.MainContentRecommendation.tabTitle
}
}
}