Files
pfs/models/dir.go
Vladimir V Maksimov 8e1f17a359 alpha
2026-02-10 16:08:35 +03:00

18 lines
380 B
Go

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"`
}