mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
11 lines
315 B
Kotlin
Vendored
11 lines
315 B
Kotlin
Vendored
package test
|
|
|
|
import kotlinx.android.parcel.Parcelize
|
|
import android.os.Parcel
|
|
import android.os.Parcelable
|
|
|
|
@Suppress("UNUSED_PARAMETER")
|
|
class User(firstName: String, secondName: String, val age: Int) : Parcelable {
|
|
override fun writeToParcel(p0: Parcel?, p1: Int) {}
|
|
override fun describeContents() = 0
|
|
} |