Skip to content

Commit

Permalink
Feature #38: RequestChangePasswordEntity
Browse files Browse the repository at this point in the history
  • Loading branch information
0se0 committed Jun 26, 2024
1 parent 62647fd commit ac7b8e9
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.sopt.now.compose.domain.entity

import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
data class RequestChangePasswordEntity(
@SerialName("previousPassword")
val previousPassword: String,
@SerialName("newPassword")
val newPassword: String,
@SerialName("newPasswordVerification")
val newPasswordVerification: String
)

0 comments on commit ac7b8e9

Please sign in to comment.