mirror of
https://github.com/vknet/vk.git
synced 2026-07-18 20:33:29 +00:00
23 lines
No EOL
421 B
C#
23 lines
No EOL
421 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Кафедра
|
|
/// </summary>
|
|
[Serializable]
|
|
public class Chair
|
|
{
|
|
/// <summary>
|
|
/// Идентификатор факультета
|
|
/// </summary>
|
|
[JsonProperty("id")]
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Название факультета
|
|
/// </summary>
|
|
[JsonProperty("title")]
|
|
public string Title { get; set; }
|
|
} |