17 lines
478 B
Go
17 lines
478 B
Go
package sqan
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type File struct {
|
|
RootDir string `json:"rootDir,omitempty"`
|
|
AbsolutePath string `json:"absolutePath,omitempty"`
|
|
RelativeDir string `json:"relativeDir,omitempty"`
|
|
RelativePath string `json:"relativePath,omitempty"`
|
|
Filename string `json:"filename,omitempty"`
|
|
Extension string `json:"extension,omitempty"`
|
|
Size int64 `json:"size,omitempty"`
|
|
Modified time.Time `json:"modified,omitempty"`
|
|
}
|