adding revenue

This commit is contained in:
samantha42
2026-03-24 11:37:45 +01:00
parent bea8582282
commit 33b100f325
5 changed files with 176 additions and 24 deletions

View File

@@ -0,0 +1,12 @@
package model
type Currency struct {
ID int
Code string
Name string
}
type CurrencyInput struct {
Code string `json:"code"`
Name string `json:"name"`
}