Files
YandexMusic/YandexMusic.API/Models/Radio/YBrand.cs
2026-04-10 12:12:33 +03:00

12 lines
372 B
C#

namespace YandexMusic.API.Models.Radio
{
public class YBrand
{
public string AdvertiserUrl { get; set; }
public string BackgroundColor { get; set; }
public string BackgroundImageUri { get; set; }
public string GlowColor { get; set; }
public string MainImageUri { get; set; }
public string Theme { get; set; }
}
}