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

7 lines
174 B
C#

namespace YandexMusic.API.Models.Landing.Entity;
public abstract class YLandingEntity
{
public string Id { get; set; }
public YLandingEntityType Type { get; set; }
}