adding revenue
This commit is contained in:
12
internal/model/currency.go
Normal file
12
internal/model/currency.go
Normal 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"`
|
||||
}
|
||||
Reference in New Issue
Block a user