feat(creator): 채널 홈 기본 화면을 연결한다

This commit is contained in:
Yu Sung
2026-07-01 20:14:08 +09:00
parent 033a9d3a0b
commit 29f7f3c26c
10 changed files with 638 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
import Foundation
enum CreatorChannelHomeTab: CaseIterable, Hashable {
case home
case live
case audio
case series
case community
case fanTalk
case donation
var title: String {
switch self {
case .home:
return ""
case .live:
return "라이브"
case .audio:
return "오디오"
case .series:
return "시리즈"
case .community:
return "커뮤니티"
case .fanTalk:
return "팬Talk"
case .donation:
return "후원"
}
}
}