vknet_vk/VkNet/Model/MarketServices.cs
Инютин Максим Николаевич f6901f2aa5 #1564 Проставляет XMLDOC
2023-07-29 17:55:07 +03:00

41 lines
No EOL
906 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 MarketServices
{
/// <summary>
/// Id
/// </summary>
[JsonProperty("contact_id")]
public long ContactId { get; set; }
/// <summary>
/// Цена
/// </summary>
[JsonProperty("currency")]
public Currency Price { get; set; }
/// <summary>
/// Признак активности
/// </summary>
[JsonProperty("enabled")]
public bool? Enabled { get; set; }
/// <summary>
/// Признак возможности отправки сообщений
/// </summary>
[JsonProperty("can_message")]
public bool? CanMessage { get; set; }
/// <summary>
/// Признак возможности комментировать
/// </summary>
[JsonProperty("comments_enabled")]
public bool? CommentsEnabled { get; set; }
}