2020-02-29 00:49:55 +01:00
|
|
|
package model
|
|
|
|
|
|
|
|
type Campaign struct {
|
2020-03-04 23:59:23 +01:00
|
|
|
Project string `json:"project"`
|
2020-02-29 13:00:40 +01:00
|
|
|
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
|
|
|
}
|