10 lines
228 B
C#
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; }
|
|
} |