currency.go 261 B

12345678910111213
  1. package basket
  2. // import (
  3. // "encoding/json"
  4. // )
  5. type currency struct {
  6. Id int `json:"id"`
  7. Name string `json:"name"`
  8. Coefficient float64 `json:"coefficient"`
  9. Code string `json:"code"`
  10. Symbol string `json:"symbol"`
  11. }