using System; using Newtonsoft.Json; namespace VkNet.Model; /// /// ����� � ����� /// [Serializable] public class SchoolClass { /// /// ����� �������������, ������� ����������� ������. /// [JsonProperty("class")] public long Class { get; set; } /// /// ������� ����������� �� ������ �������� ������������. /// [JsonProperty("text")] public string Text { get; set; } }