mirror of
https://github.com/vknet/vk.git
synced 2026-07-22 14:23:28 +00:00
23 lines
No EOL
486 B
C#
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; }
|
|
} |