This commit is contained in:
2023-11-03 11:17:45 +03:00
parent 4120cd2b1a
commit 84c0248019
40 changed files with 964 additions and 73 deletions

View File

@@ -66,7 +66,10 @@ type ListImages struct {
EntryCount uint64 `json:"entryCount"`
}
// History
// ListHistories of record image
type ListHistories []History
// History of record image
type History struct {
// GUID
GUID string `json:"guid"`
@@ -123,7 +126,7 @@ type RecordImage struct {
GUID uint64 `json:"guid"`
// History
History []History `json:"history"`
History ListHistories `json:"history"`
// HotResize
HotResize bool `json:"hotResize"`