From e862a281d990fce370a56f44fe0da9be435da90c Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Sun, 7 Jul 2024 19:53:08 -0400 Subject: Add time field to FrequencyMetadata struct --- internal/chore/model/model.go | 1 + 1 file changed, 1 insertion(+) (limited to 'internal/chore/model') diff --git a/internal/chore/model/model.go b/internal/chore/model/model.go index 90f6c29..3fb7a92 100644 --- a/internal/chore/model/model.go +++ b/internal/chore/model/model.go @@ -47,6 +47,7 @@ type FrequencyMetadata struct { Days []*string `json:"days,omitempty"` Months []*string `json:"months,omitempty"` Unit *string `json:"unit,omitempty"` + Time string `json:"time,omitempty"` } type NotificationMetadata struct { -- cgit