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