7 lines
135 B
Go
7 lines
135 B
Go
package model
|
|
|
|
type Money struct {
|
|
Currency string `bson:"currency" json:"currency"`
|
|
Amount string `bson:"amount" json:"amount"`
|
|
}
|