stat.go 171 B

12345678
  1. package model
  2. // Statistics def.
  3. type Statistics struct {
  4. Quantity int64 `json:"quantity"`
  5. EventID int64 `json:"event_id"`
  6. EventName string `json:"event_name"`
  7. }