orders.go 93 B

123456
  1. package rest
  2. type Order struct {
  3. Name string `json:"Name"`
  4. IsAsc bool `json:"IsAsc"`
  5. }