transfer-allowances (#143)
All checks were successful
Backend Build and Test / build (push) Successful in 10m9s
Backend Deploy / build (push) Successful in 11m20s

Reviewed-on: #143
This commit was merged in pull request #143.
This commit is contained in:
2025-10-08 20:21:09 +02:00
parent cdbac17215
commit c9a96f937a
7 changed files with 401 additions and 159 deletions

View File

@@ -80,3 +80,9 @@ type AddAllowanceAmountRequest struct {
Amount float64 `json:"amount"`
Description string `json:"description"`
}
type TransferRequest struct {
From int `json:"from"`
To int `json:"to"`
Amount float64 `json:"amount"`
}