diff --git a/templates/types.go b/templates/types.go index 758032b..08e94a9 100644 --- a/templates/types.go +++ b/templates/types.go @@ -181,3 +181,23 @@ type Bookmark struct { Notes string CreatedAt time.Time } + +// ProcessingIssueData - Processing issue types +type ProcessingIssueData struct { + ID string + MediaItemID string + Title string + FilePath string + FormatGroup string + LibraryTypeName string + IssueType string + IssueDescription string + Severity string + CreatedAt time.Time +} + +type IssueStats struct { + ErrorCount int64 + WarningCount int64 + InfoCount int64 +}