10 lines
316 B
C#
10 lines
316 B
C#
using System.Text.Json.Serialization;
|
|
using YandexMusic.API.Models.Landing.Entity.Entities.Context;
|
|
|
|
namespace YandexMusic.API.Models.Landing.Entity.Entities;
|
|
|
|
public class YLandingEntityPlayContext : YLandingEntity
|
|
{
|
|
[JsonConverter(typeof(YPlayContextConverter))]
|
|
public YPlayContext Data { get; set; }
|
|
} |