campaigner/model/ticket.go

8 lines
150 B
Go
Raw Normal View History

2020-02-29 01:20:46 +01:00
package model
type Ticket struct {
Filename string `json:"filename"`
LineNo int `json:"line_no"`
2020-02-29 01:20:46 +01:00
Text string `json:"text"` // needed??
}