Sign in
pigweed
/
third_party
/
github
/
bazelbuild
/
rules_kotlin
/
HEAD
/
.
/
examples
/
plugin
/
src
/
parcelize
/
ParcelableObject.kt
blob: 2cafbbbde77b3dc24942272983d367430d08f609 [
file
] [
log
] [
blame
]
package
plugins
.
parcelize
import
android
.
os
.
Parcelable
import
kotlinx
.
parcelize
.
Parcelize
@Parcelize
class
ParcelableObject
(
val name
:
String
)
:
Parcelable