mirror of
https://github.com/arkorty/DownLink.git
synced 2026-03-17 16:51:45 +00:00
11 lines
175 B
Go
11 lines
175 B
Go
package models
|
|
|
|
type VideoDownloadRequest struct {
|
|
URL string `json:"url"`
|
|
Quality string `json:"quality"`
|
|
}
|
|
|
|
type ErrorResponse struct {
|
|
Error string `json:"error"`
|
|
}
|