Files
YandexMusic/YandexMusic.API/Models/Radio/YAdParams.cs
2026-04-10 15:05:32 +03:00

13 lines
399 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; }
}