sodalive-ios/SodaLive/Sources/Content/Detail/Comment/ModifyCommentRequest.swift

13 lines
217 B
Swift

//
// ModifyCommentRequest.swift
// SodaLive
//
// Created by klaus on 2023/09/08.
//
struct ModifyCommentRequest: Encodable {
let commentId: Int
var comment: String? = nil
var isActive: Bool? = nil
}