10 lines
222 B
Go
10 lines
222 B
Go
|
|
package models
|
||
|
|
|
||
|
|
import "github.com/pocketbase/pocketbase/tools/types"
|
||
|
|
|
||
|
|
type BackupFileInfo struct {
|
||
|
|
Key string `json:"key"`
|
||
|
|
Size int64 `json:"size"`
|
||
|
|
Modified types.DateTime `json:"modified"`
|
||
|
|
}
|