Files
sodalive-ios/SodaLive/Sources/V2/CreatorChannel/ReplyDetail/Models/CreatorChannelReplyDetailContext.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
)
}