Skip to content

Commit

Permalink
refactor/#11: @serializable로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
youjin09222 committed May 11, 2024
1 parent 3c28258 commit a998575
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/src/main/java/com/sopt/now/compose/data/userData.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package com.sopt.now.compose.data

import android.os.Parcelable
import kotlinx.android.parcel.Parcelize
import kotlinx.serialization.Serializable

@Parcelize
@Serializable
data class UserData(
val userId: String,
val userName: String,
val userPhone: String
): Parcelable
)

0 comments on commit a998575

Please sign in to comment.