feat(creator): 답글 상세 모델을 추가한다

This commit is contained in:
Yu Sung
2026-07-07 15:03:49 +09:00
parent 26884d9e81
commit c356815b3e
2 changed files with 105 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import Foundation
enum CreatorChannelReplyDetailContext {
case community(
creatorId: Int,
postId: Int,
parentComment: GetCommunityPostCommentListItem
)
case fanTalk(
creatorId: Int,
parentFanTalk: CreatorChannelFanTalkItemResponse
)
}