mirror of
https://github.com/vknet/vk.git
synced 2026-07-10 00:18:28 +00:00
29 lines
No EOL
588 B
C#
29 lines
No EOL
588 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Станция метро
|
|
/// </summary>
|
|
[Serializable]
|
|
public class MetroStation
|
|
{
|
|
/// <summary>
|
|
/// Идентификатор станции метро
|
|
/// </summary>
|
|
[JsonProperty("id")]
|
|
public ulong Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Название станции метро
|
|
/// </summary>
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Цвет ветки станции метро
|
|
/// </summary>
|
|
[JsonProperty("color")]
|
|
public string Color { get; set; }
|
|
} |