7 lines
147 B
Go
7 lines
147 B
Go
package model
|
|
|
|
type Ticket struct {
|
|
Filename string `json:"filename"`
|
|
Line int `json:"line"`
|
|
Text string `json:"text"` // needed??
|
|
}
|