9 lines
299 B
C#
9 lines
299 B
C#
namespace YandexMusic.API.Models.Landing.Entity.Entities;
|
|
|
|
public class YLandingEntityPodcast : YLandingEntity
|
|
{
|
|
public string Description { get; set; }
|
|
public string DescriptionFormatted { get; set; }
|
|
public DateTime LastUpdated { get; set; }
|
|
public YPodcast Data { get; set; }
|
|
} |