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