vknet_vk/VkNet/Model/MetricHitResponse.cs
Инютин Максим Николаевич 932d99d61a Применяет стили кода
2022-08-02 00:22:12 +03:00

23 lines
No EOL
486 B
C#

using System;
using Newtonsoft.Json;
namespace VkNet.Model;
/// <summary>
/// Событие метрики.
/// </summary>
[Serializable]
public class MetricHitResponse
{
/// <summary>
/// Redirect link
/// </summary>
[JsonProperty(propertyName: "redirect_link")]
public string RedirectLink { get; set; }
/// <summary>
/// Information whether request has been processed successfully
/// </summary>
[JsonProperty(propertyName: "result")]
public bool? Result { get; set; }
}