19 lines
435 B
Swift
19 lines
435 B
Swift
import Foundation
|
|
|
|
enum CreatorChannelReplyDetailContext {
|
|
case community(
|
|
creatorId: Int,
|
|
postId: Int,
|
|
parentComment: GetCommunityPostCommentListItem
|
|
)
|
|
case communityPostDetail(
|
|
creatorId: Int,
|
|
postId: Int,
|
|
parentComment: CreatorChannelCommunityCommentResponse
|
|
)
|
|
case fanTalk(
|
|
creatorId: Int,
|
|
parentFanTalk: CreatorChannelFanTalkItemResponse
|
|
)
|
|
}
|