Skip to content

Commit

Permalink
Data class
Browse files Browse the repository at this point in the history
  • Loading branch information
ruixhuang committed May 20, 2024
1 parent 0f379bc commit 09a9bff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package exchange.dydx.abacus.state.internalstate

internal class InternalState(
var transfer: InternalTransferInputState = InternalTransferInputState(),
internal data class InternalState(
val transfer: InternalTransferInputState = InternalTransferInputState(),
)
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import exchange.dydx.abacus.output.input.SelectionOption
import exchange.dydx.abacus.output.input.TransferInputChainResource
import exchange.dydx.abacus.output.input.TransferInputTokenResource

internal class InternalTransferInputState(
internal data class InternalTransferInputState(
var chains: List<SelectionOption>? = null,
var tokens: List<SelectionOption>? = null,
var chainResources: Map<String, TransferInputChainResource>? = null,
Expand Down

0 comments on commit 09a9bff

Please sign in to comment.