Updated on 2026-08-14
This commit is contained in:
commit
3cbc2dadfb
822 changed files with 12838 additions and 5366 deletions
7
domain/yield-supply/models/detekt-baseline-main.xml
Normal file
7
domain/yield-supply/models/detekt-baseline-main.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" ?>
|
||||
<SmellBaseline>
|
||||
<ManuallySuppressedIssues/>
|
||||
<CurrentIssues>
|
||||
<ID>NullableToStringCall:YieldMarketToken.kt$YieldMarketToken$${backendId}</ID>
|
||||
</CurrentIssues>
|
||||
</SmellBaseline>
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
package com.tangem.domain.yield.supply.models
|
||||
|
||||
/**
|
||||
* Represents the availability of yield supply for a given asset.
|
||||
*/
|
||||
sealed class YieldSupplyAvailability {
|
||||
data class Available(val apy: String) : YieldSupplyAvailability()
|
||||
|
||||
data object Unavailable : YieldSupplyAvailability()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue