mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 23:03:01 +08:00
19 lines
502 B
Go
19 lines
502 B
Go
package dtos
|
|
|
|
import "time"
|
|
|
|
type Folder struct {
|
|
Id int64 `json:"id"`
|
|
Title string `json:"title"`
|
|
Slug string `json:"slug"`
|
|
HasAcl bool `json:"hasAcl"`
|
|
CanSave bool `json:"canSave"`
|
|
CanEdit bool `json:"canEdit"`
|
|
CanAdmin bool `json:"canAdmin"`
|
|
CreatedBy string `json:"createdBy"`
|
|
Created time.Time `json:"created"`
|
|
UpdatedBy string `json:"updatedBy"`
|
|
Updated time.Time `json:"updated"`
|
|
Version int `json:"version"`
|
|
}
|