using YandexMusic.API.Models.Album; using YandexMusic.API.Models.Common; using YandexMusic.API.Models.Track; namespace YandexMusic.API.Models.Feed.Event; public class YFeedPromotion { public string PromoId { get; set; } public string Description { get; set; } public string Background { get; set; } public string ImagePosition { get; set; } public YFeedEventPromotionType PromotionType { get; set; } public DateTime StartDate { get; set; } public string SubTitle { get; set; } public string SubtitleUrl { get; set; } public string Title { get; set; } public string TitleUrl { get; set; } public List Tags { get; set; } public List Albums { get; set; } public List Tracks { get; set; } }