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

14 lines
445 B
C#

namespace YandexMusic.API.Models.Radio
{
public class YAdParams
{
public decimal AdVolume { get; set; }
public string CategoryId { get; set; }
public int GenreId { get; set; }
public string GenreName { get; set; }
public string OtherParams { get; set; }
public string PageRef { get; set; }
public string PartnerId { get; set; }
public string TargetRef { get; set; }
}
}