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