Files
YandexMusic/YandexMusic.API/Models/Artist/YMetroStation.cs
2026-04-10 15:05:32 +03:00

10 lines
228 B
C#

using System.Text.Json.Serialization;
namespace YandexMusic.API.Models.Artist;
public class YMetroStation
{
[JsonPropertyName("line-color")]
public string LineColor { get; set; }
public string Title { get; set; }
}