mirror of
https://github.com/vknet/vk.git
synced 2026-07-10 00:18:28 +00:00
25 lines
No EOL
564 B
C#
25 lines
No EOL
564 B
C#
using System;
|
|
using System.Collections.ObjectModel;
|
|
using Newtonsoft.Json;
|
|
using VkNet.Enums.StringEnums;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Streaming Stats
|
|
/// </summary>
|
|
[Serializable]
|
|
public class StreamingStats
|
|
{
|
|
/// <summary>
|
|
/// Тип событий
|
|
/// </summary>
|
|
[JsonProperty(propertyName: "event_type")]
|
|
public StreamingEventType? EventType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Значения статистики
|
|
/// </summary>
|
|
[JsonProperty(propertyName: "stats")]
|
|
public ReadOnlyCollection<StreamingStatsItem> Stats { get; set; }
|
|
} |