관리자 - FAQ API

This commit is contained in:
2023-08-06 22:10:33 +09:00
parent 87a5ceee9c
commit a983595bad
9 changed files with 234 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package kr.co.vividnext.sodalive.faq
data class ModifyFaqRequest(
val id: Long,
val question: String? = null,
val answer: String? = null,
val category: String? = null
)