Files
core/pkg/domain/drafts.go

12 lines
405 B
Go
Raw Permalink Normal View History

2026-04-02 10:57:36 -04:00
package domain
type DraftTicket struct {
ID int `json:"id"`
ReportID string `json:"report_id"`
Title string `json:"title"`
Description string `json:"description"`
Severity string `json:"severity"`
AssetIdentifier string `json:"asset_identifier"`
RecommendedRemediation string `json:"recommended_remediation"`
}