campaigner/model/ticket.go
2020-02-29 13:00:40 +01:00

7 lines
150 B
Go

package model
type Ticket struct {
Filename string `json:"filename"`
LineNo int `json:"line_no"`
Text string `json:"text"` // needed??
}