This commit is contained in:
2021-12-21 00:17:09 +01:00
commit 1506a57231
11 changed files with 187 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package entities
type Download struct {
ID string `json:"id"`
Status string `json:"status"`
Link string `json:"link"`
Data string `json:"data"`
}