9 lines
174 B
Go
9 lines
174 B
Go
|
|
package entity
|
||
|
|
|
||
|
|
// ProductDownload product download properties
|
||
|
|
type ProductDownload struct {
|
||
|
|
ID string `json:"id"`
|
||
|
|
Name string `json:"name"`
|
||
|
|
File string `json:"file"`
|
||
|
|
}
|