10 lines
300 B
C#
10 lines
300 B
C#
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; }
|
|
}
|
|
} |