11 lines
185 B
Go
11 lines
185 B
Go
package chipmunk
|
|
|
|
import "time"
|
|
|
|
type tranx struct {
|
|
Cost float64 `json:"cost"`
|
|
Store string `json:"store"`
|
|
Info string `json:"Info"`
|
|
Month time.Month `json:"Month"`
|
|
}
|