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