mirror of
https://github.com/pocketbase/pocketbase.git
synced 2024-11-21 13:35: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"`
|
|
}
|