Files
yt-dlp-webui/server/archive/data/models.go
2024-12-18 11:59:17 +01:00

14 lines
187 B
Go

package data
import "time"
type ArchiveEntry struct {
Id string
Title string
Path string
Thumbnail string
Source string
Metadata string
CreatedAt time.Time
}