Files
YandexMusic/YandexMusic.API/Models/Feed/Event/YFeedPromotion.cs
2026-04-10 15:05:32 +03:00

23 lines
766 B
C#

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<YTag> Tags { get; set; }
public List<YAlbum> Albums { get; set; }
public List<YTrack> Tracks { get; set; }
}