diff options
author | Mo Tarbin <mhed.t91@gmail.com> | 2024-07-07 19:53:08 -0400 |
---|---|---|
committer | Mo Tarbin <mhed.t91@gmail.com> | 2024-07-07 19:53:08 -0400 |
commit | e862a281d990fce370a56f44fe0da9be435da90c (patch) | |
tree | ed23fea0cab89b0c03d5916c390f7347a9d4d390 /internal/chore/model | |
parent | 970cf40745a7441462461467274dc6b1b3de5eb8 (diff) | |
download | donetick-e862a281d990fce370a56f44fe0da9be435da90c.tar.gz donetick-e862a281d990fce370a56f44fe0da9be435da90c.tar.bz2 donetick-e862a281d990fce370a56f44fe0da9be435da90c.zip |
Add time field to FrequencyMetadata struct
Diffstat (limited to 'internal/chore/model')
-rw-r--r-- | internal/chore/model/model.go | 1 |
1 files changed, 1 insertions, 0 deletions
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 { |