Files
sodalive-ios/SodaLive/Sources/V2/CreatorChannel/ReplyDetail/Models/CreatorChannelReplyDetailContext.swift

14 lines
292 B
Swift

import Foundation
enum CreatorChannelReplyDetailContext {
case community(
creatorId: Int,
postId: Int,
parentComment: GetCommunityPostCommentListItem
)
case fanTalk(
creatorId: Int,
parentFanTalk: CreatorChannelFanTalkItemResponse
)
}