Files
Vladimir Zagainov 587676be58
Some checks failed
continuous-integration/drone/push Build is failing
MVP done
2025-06-23 13:02:10 +03:00

18 lines
586 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package model
// TrackInfo содержит всю необходимую информацию о треке для его обработки и тегирования.
type TrackInfo struct {
YandexTrackID string
YandexAlbumID string
Title string
Artist string
Album string
AlbumArtist string // Исполнитель альбома (для сборников)
Year int
Genre string
DiscNumber int // Номер диска
TrackPosition int // Номер трека на диске
CoverURL string
DownloadURL string
}