Files
yamusic-bot/internal/model/model.go

16 lines
410 B
Go
Raw 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
Album string
Artist string
Year int
Genre string
TrackPosition int
CoverURL string
DownloadURL string
}