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