currency.go 223 B

123456789
  1. package basket
  2. type currency struct {
  3. Id int `json:"id"`
  4. Name string `json:"name"`
  5. Coefficient float64 `json:"coefficient"`
  6. Code string `json:"code"`
  7. Symbol string `json:"symbol"`
  8. }