Files
meld/internal/models/models.go
2026-03-19 15:09:37 +01:00

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
}