Skip to content

Commit

Permalink
add/#11: UserData 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
youjin09222 committed May 3, 2024
1 parent ce8733d commit 6f175a6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions app/src/main/java/com/sopt/now/compose/data/userData.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.sopt.now.compose.data

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

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

0 comments on commit 6f175a6

Please sign in to comment.