Created
November 29, 2020 11:42
-
-
Save mayuce/89e5bc4593b48790322185f94b49db89 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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