Skip to content

Instantly share code, notes, and snippets.

@birojow
Created May 13, 2024 17:09
Show Gist options
  • Save birojow/949f296bc28fb20fcec7b292b300b624 to your computer and use it in GitHub Desktop.
Save birojow/949f296bc28fb20fcec7b292b300b624 to your computer and use it in GitHub Desktop.
data class User(
val name: String,
val contactInfo: ContactInfo,
val roles: List<Role>
)
data class ContactInfo(
val email: String,
val phoneNumber: String
)
enum class Role {
User, Manager, Admin
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment