Files
meld/internal/models/models.go
2026-03-19 14:35:45 +01:00

11 lines
156 B
Go

package models
import "time"
type Ticket struct {
ID int64
Attributes map[string]float64
Tags map[string]float64
CreatedAt time.Time
}