18 lines
543 B
Go
18 lines
543 B
Go
package schema
|
|
|
|
import "time"
|
|
|
|
type DashboardVersion struct {
|
|
ID uint `json:"id"`
|
|
DashboardID uint `json:"dashboardId"`
|
|
UID string `json:"uid"`
|
|
ParentVersion uint `json:"parentVersion"`
|
|
RestoredFrom uint `json:"restoredFrom"`
|
|
Version uint `json:"version"`
|
|
Created time.Time `json:"created"`
|
|
CreatedBy string `json:"createdBy"`
|
|
Message string `json:"message"`
|
|
Data any `json:"data"`
|
|
}
|
|
|
|
type DashboardVersionListResponse []DashboardVersion
|