feat(content): 전체 탭을 추가한다
This commit is contained in:
@@ -2,11 +2,17 @@ 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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user