Files
YandexMusic/YandexMusic.API/Models/Landing/Entity/Entities/YPodcast.cs
2026-04-10 12:12:33 +03:00

12 lines
337 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; }
}
}