Files
Portfolio-Engine/internal/model/currency.go
2026-03-24 11:37:45 +01:00

13 lines
161 B
Go

package model
type Currency struct {
ID int
Code string
Name string
}
type CurrencyInput struct {
Code string `json:"code"`
Name string `json:"name"`
}