9 lines
214 B
Go
9 lines
214 B
Go
package db
|
|
|
|
type SpeedingTicket struct {
|
|
Base
|
|
Speed int `json:"speed"`
|
|
AllowedSpeed int `json:"allowed_speed"`
|
|
ImagePath string `json:"image_path"`
|
|
KIImagePath string `json:"ki_image_path"`
|
|
}
|