mirror of
https://github.com/pocketbase/pocketbase.git
synced 2024-12-01 02:56:49 +02:00
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"`
|
||
|
}
|