mirror of
https://github.com/vknet/vk.git
synced 2026-07-14 18:38:25 +00:00
25 lines
No EOL
438 B
C#
25 lines
No EOL
438 B
C#
using System;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Статус пользователя.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class OwnerState
|
|
{
|
|
/// <summary>
|
|
/// Состояние
|
|
/// </summary>
|
|
public int State { get; set; }
|
|
|
|
/// <summary>
|
|
/// Описание
|
|
/// </summary>
|
|
public string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// Фотографии
|
|
/// </summary>
|
|
public OwnerStatePhoto Photos { get; set; }
|
|
} |