12 lines
175 B
Go
12 lines
175 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Ticket struct {
|
|
ID int64
|
|
PlayerID string
|
|
Attributes map[string]float64
|
|
Tags map[string]float64
|
|
CreatedAt time.Time
|
|
}
|