13 lines
217 B
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
|
|
}
|