campaigner/model/ticket.go
2020-02-29 01:20:54 +01:00

7 lines
147 B
Go

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