kotlin parcelable

@Parcelize
class User(val firstName: String, val lastName: String, val age: Int): Parcelable
MaarS