Files
no-copy/referral/src/main/kotlin/Referral.kt
T
vladp 6d6721fb0a
Test Workflow / test (push) Waiting to run
dev add reason entity
2026-03-27 21:54:36 +07:00

14 lines
272 B
Kotlin

package ru.soune
interface Referral {
val userId: Long
val referralLink: String
val inviter: Long?
val currentLevel: String
val totalIncome: Int
val availableIncome: Int
val holdBalance: Int
val spentBalance: Int
val active: Boolean
}