mirror of
https://github.com/black-ant/Ant-Browser.git
synced 2026-07-14 18:48:55 +08:00
channel: master
version: 1.2.0
source-ref: D:\code\open_source\ant-chrome master
source-commit: f3d7ec5
merged-public-base: 3d264eb
12 lines
314 B
Go
12 lines
314 B
Go
package backend
|
|
|
|
// SnapshotInfo 快照元数据
|
|
type SnapshotInfo struct {
|
|
SnapshotId string `json:"snapshotId"`
|
|
ProfileId string `json:"profileId"`
|
|
Name string `json:"name"`
|
|
SizeMB float64 `json:"sizeMB"`
|
|
CreatedAt string `json:"createdAt"`
|
|
FilePath string `json:"filePath,omitempty"`
|
|
}
|