Skip to content

Instantly share code, notes, and snippets.

@ParkSangGwon
Created January 10, 2022 01:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ParkSangGwon/b86dd5e989467a916c8ec6ff1a1c03e4 to your computer and use it in GitHub Desktop.
Save ParkSangGwon/b86dd5e989467a916c8ec6ff1a1c03e4 to your computer and use it in GitHub Desktop.
data class User(
val type: Type,
val name: String,
val address: String?,
val phoneNumber: String?,
val businessNumber: String?,
val department: String?
) {
enum class Type {
CUSTOMER, STORE, ADMIN
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment