lurch-dl/core/interface.go

14 lines
176 B
Go
Raw Normal View History

2025-03-08 21:09:32 +01:00
package core
type DownloadProgress struct {
Aborted bool
Error error
Success bool
Delaying bool
Progress float32
Rate float64
Retries int
Title string
Waiting bool
2025-03-08 21:09:32 +01:00
}