package models import "time" type WAURule struct { ID int `json:"id"` CustomerID int `json:"customer_id"` WingetID string `json:"winget_id"` DisplayName string `json:"display_name"` RuleType string `json:"rule_type"` // "allow" | "block" CreatedAt time.Time `json:"created_at"` } type WAUSoftwareEntry struct { Name string `json:"name"` Publisher string `json:"publisher"` DeviceCount int `json:"device_count"` Versions []string `json:"versions"` }