package models import ( "time" "github.com/google/uuid" ) type Dir struct { ID uuid.UUID `json:"id"` ParentID *uuid.UUID `json:"parent_id"` Name string `json:"name"` OwnerID uuid.UUID `json:"owner_id"` IsPublic bool `json:"is_public"` Created time.Time `json:"created"` LastModified time.Time `json:"last_modified"` }