Skip to content

Commit

Permalink
[add] : domain 영역 UserEntity 추가 + Parcelize
Browse files Browse the repository at this point in the history
  • Loading branch information
chanubc committed Jan 3, 2024
1 parent f84ee04 commit d6cbccb
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package org.sopt.dosopttemplate.domain.entity

import android.os.Parcelable
import kotlinx.parcelize.Parcelize

@Parcelize
data class UserEntity(
val id: String,
val pwd: String,
val nickName: String,
val mbti: String,
) : Parcelable

0 comments on commit d6cbccb

Please sign in to comment.