콘텐츠 API 추가
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package kr.co.vividnext.sodalive.content
|
||||
|
||||
data class CreateAudioContentRequest(
|
||||
val title: String,
|
||||
val detail: String,
|
||||
val tags: String,
|
||||
val price: Int,
|
||||
val themeId: Long = 0,
|
||||
val isAdult: Boolean = false,
|
||||
val isGeneratePreview: Boolean = true,
|
||||
val isCommentAvailable: Boolean = false,
|
||||
val type: AudioContentType = AudioContentType.INDIVIDUAL,
|
||||
val childIds: List<Long>? = null
|
||||
)
|
Reference in New Issue
Block a user