콘텐츠 댓글 - 수정/삭제 추가

This commit is contained in:
Yu Sung
2023-09-08 19:33:09 +09:00
parent 707b6f804c
commit b31933715d
9 changed files with 420 additions and 72 deletions

View File

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