feat(content): 추천 오디오 탭을 추가한다

This commit is contained in:
Yu Sung
2026-07-06 14:03:09 +09:00
parent f3cbf42328
commit b42ca61ce4
28 changed files with 1841 additions and 460 deletions

View File

@@ -0,0 +1,12 @@
import Foundation
enum MainContentTab: CaseIterable, Hashable {
case recommendation
var title: String {
switch self {
case .recommendation:
return I18n.MainContentRecommendation.tabTitle
}
}
}