1
1
Fork 0
mirror of https://github.com/openvk/openvk synced 2025-05-06 00:56:38 +03:00
openvk/VKAPI/Structures/Conversation.php

16 lines
287 B
PHP

<?php
declare(strict_types=1);
namespace openvk\VKAPI\Structures;
final class Conversation
{
public $peer;
public $last_message_id;
public $in_read = 1;
public $out_read = 1;
public $is_marked_unread = false;
public $important = true;
public $can_write;
}