Files
sodalive-ios/SodaLive/Sources/V2/Main/Content/MainContentTab.swift
2026-07-06 16:28:33 +09:00

19 lines
415 B
Swift

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