Files
Firefly_Launcher/pkg/models/hdiffmap.go
2025-07-08 14:54:41 +07:00

15 lines
477 B
Go

package models
type DiffMapType struct {
SourceFileName string `json:"source_file_name"`
SourceFileMD5 string `json:"source_file_md5"`
SourceFileSize int64 `json:"source_file_size"`
TargetFileName string `json:"target_file_name"`
TargetFileMD5 string `json:"target_file_md5"`
TargetFileSize int64 `json:"target_file_size"`
PatchFileName string `json:"patch_file_name"`
PatchFileMD5 string `json:"patch_file_md5"`
PatchFileSize int64 `json:"patch_file_size"`
}