프로필 수정 API

This commit is contained in:
2023-08-18 19:15:19 +09:00
parent 9236aece18
commit 25be1a6adc
9 changed files with 290 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package kr.co.vividnext.sodalive.member
data class ProfileUpdateRequest(
val email: String,
val password: String? = null,
val modifyPassword: String? = null,
val nickname: String? = null,
val gender: Gender? = null,
val insertTags: List<String>? = null,
val removeTags: List<String>? = null,
val introduce: String? = null,
val youtubeUrl: String? = null,
val instagramUrl: String? = null,
val websiteUrl: String? = null,
val blogUrl: String? = null,
val container: String
)