9 lines
267 B
Go
9 lines
267 B
Go
package export
|
|
|
|
type image struct {
|
|
SizeBytes uint64 `json:"sizeBytes"`
|
|
InefficientBytes uint64 `json:"inefficientBytes"`
|
|
EfficiencyScore float64 `json:"efficiencyScore"`
|
|
InefficientFiles []fileReference `json:"fileReference"`
|
|
}
|