@@ -1,6 +1,6 @@
package rest
type Order struct {
- Name string
- IsAsc bool
+ Name string `json:"Name"`
+ IsAsc bool `json:"IsAsc"`
}