Skip to content

Instantly share code, notes, and snippets.

@mayuce
Created November 29, 2020 11:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mayuce/89e5bc4593b48790322185f94b49db89 to your computer and use it in GitHub Desktop.
Save mayuce/89e5bc4593b48790322185f94b49db89 to your computer and use it in GitHub Desktop.
package com.some.thing.routerdata
import com.some.thing.routing.RouterData
import kotlinx.android.parcel.Parcelize
@Parcelize
data class MainRouterData(
val userId: Int?
) : RouterData {
companion object {
const val ROUTER_ID = 4
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment