-
-
Save virendersran01/768aac956616267d1c17d18cbd7f9bd9 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