mirror of
https://github.com/vknet/vk.git
synced 2026-07-10 00:18:28 +00:00
18 lines
No EOL
370 B
C#
18 lines
No EOL
370 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
using VkNet.Enums.StringEnums;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Streaming Settings.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class StreamingSettings
|
|
{
|
|
/// <summary>
|
|
/// Месячные ограничения
|
|
/// </summary>
|
|
[JsonProperty(propertyName: "monthly_limit")]
|
|
public MonthlyLimit? MonthlyLimit { get; set; }
|
|
} |