using System; using System.Collections.ObjectModel; using Newtonsoft.Json; using VkNet.Enums.StringEnums; namespace VkNet.Model; /// /// Streaming Stats /// [Serializable] public class StreamingStats { /// /// Тип событий /// [JsonProperty(propertyName: "event_type")] public StreamingEventType? EventType { get; set; } /// /// Значения статистики /// [JsonProperty(propertyName: "stats")] public ReadOnlyCollection Stats { get; set; } }