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

29 lines
No EOL
640 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 Recipient
{
/// <summary>
/// имя покупателя.
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
/// <summary>
/// номер покупателя..
/// </summary>
[JsonProperty("phone")]
public string Phone { get; set; }
/// <summary>
/// строковое представление информации о покупателе.
/// </summary>
[JsonProperty("display_text")]
public string DisplayText { get; set; }
}