This commit is contained in:
xds
2025-10-31 15:31:55 +03:00
parent 040da34ff7
commit 7972ea0fdf
117 changed files with 3691 additions and 2013 deletions

View File

@@ -0,0 +1,17 @@
package space.luminic.finance.models
import java.math.BigDecimal
import java.time.Instant
data class RecurrentOperation(
val id: Int? = null,
val space: Space,
val category: Category,
val name: String,
val amount: BigDecimal,
val date: Int,
val createdBy: User? = null,
val createdAt: Instant? = null,
val updatedBy: User? = null,
val updatedAt: Instant? = null,
)