folder.go 535 B

12345678910111213141516171819
  1. package dtos
  2. import "time"
  3. type Folder struct {
  4. Id int64 `json:"id"`
  5. Uid string `json:"uid"`
  6. Title string `json:"title"`
  7. Url string `json:"url"`
  8. HasAcl bool `json:"hasAcl"`
  9. CanSave bool `json:"canSave"`
  10. CanEdit bool `json:"canEdit"`
  11. CanAdmin bool `json:"canAdmin"`
  12. CreatedBy string `json:"createdBy"`
  13. Created time.Time `json:"created"`
  14. UpdatedBy string `json:"updatedBy"`
  15. Updated time.Time `json:"updated"`
  16. Version int `json:"version"`
  17. }