campaigner/model/campaign.go

10 lines
223 B
Go
Raw Normal View History

2020-02-29 00:49:55 +01:00
package model
type Campaign struct {
2020-03-05 17:38:53 +01:00
Url string `json:"url"`
2020-03-04 23:59:23 +01:00
Project string `json:"project"`
Epic string `json:"epic"`
2020-02-29 17:48:53 +01:00
Summary string `json:"summary"`
2020-02-29 13:33:03 +01:00
Tickets []*Ticket `json:"tickets,omitempty"`
2020-02-29 00:49:55 +01:00
}