Files
YandexMusic/YandexMusic.API/Models/Landing/Entity/Entities/YPodcast.cs
2026-04-10 15:05:32 +03:00

11 lines
307 B
C#

using YandexMusic.API.Models.Album;
namespace YandexMusic.API.Models.Landing.Entity.Entities;
public class YPodcast
{
public string Description { get; set; }
public string DescriptionFormatted { get; set; }
public DateTime LastUpdated { get; set; }
public YAlbum Podcast { get; set; }
}