mirror of
https://github.com/vknet/vk.git
synced 2026-07-10 00:18:28 +00:00
23 lines
No EOL
514 B
C#
23 lines
No EOL
514 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Беседы
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ConversationAndLastMessage
|
|
{
|
|
/// <summary>
|
|
/// Объект беседы
|
|
/// </summary>
|
|
[JsonProperty("conversation")]
|
|
public Conversation Conversation { get; set; }
|
|
|
|
/// <summary>
|
|
/// Объект, описывающий последнее сообщение в беседе.
|
|
/// </summary>
|
|
[JsonProperty("last_message")]
|
|
public Message LastMessage { get; set; }
|
|
} |