vknet_vk/VkNet/Model/Delivery.cs
Инютин Максим Николаевич 3b145a3327 Рефакторинг проекта
2025-09-09 01:02:47 +03:00

41 lines
No EOL
963 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using Newtonsoft.Json;
namespace VkNet.Model;
/// <summary>
/// Информация о доставке
/// </summary>
[Serializable]
public class Delivery
{
/// <summary>
/// адрес доставки.
/// </summary>
[JsonProperty("address")]
public string Address { get; set; }
/// <summary>
/// тип доставки.
/// </summary>
[JsonProperty("type")]
public string Type { get; set; }
/// <summary>
/// трек-номер для отслеживания заказа.
/// </summary>
[JsonProperty("track_number")]
public string TrackNumber { get; set; }
/// <summary>
/// ссылка для отслеживания заказа по трек-номеру.
/// </summary>
[JsonProperty("track_link")]
public string TrackLink { get; set; }
/// <summary>
/// информация о пункте выдачи.
/// </summary>
[JsonProperty("delivery_point ")]
public string DeliveryPoint { get; set; }
}