campaigner/model/ticket.go

8 lines
147 B
Go
Raw Normal View History

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