diff options
Diffstat (limited to 'internal/models/types.go')
| -rw-r--r-- | internal/models/types.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/internal/models/types.go b/internal/models/types.go index 0284a3a..6dc8716 100644 --- a/internal/models/types.go +++ b/internal/models/types.go @@ -103,9 +103,10 @@ type CalendarEvent struct { // Bug represents a bug report type Bug struct { - ID int64 `json:"id"` - Description string `json:"description"` - CreatedAt time.Time `json:"created_at"` + ID int64 `json:"id"` + Description string `json:"description"` + CreatedAt time.Time `json:"created_at"` + ResolvedAt *time.Time `json:"resolved_at,omitempty"` } // CacheMetadata tracks when data was last fetched |
