chipmunk/tranx.go

11 lines
185 B
Go
Raw Normal View History

package chipmunk
2016-08-23 09:15:34 -07:00
import "time"
type tranx struct {
2017-01-20 14:22:01 -08:00
Cost float64 `json:"cost"`
2016-08-23 09:15:34 -07:00
Store string `json:"store"`
Info string `json:"Info"`
Month time.Month `json:"Month"`
}