mirror of
https://github.com/openvk/openvk
synced 2025-04-21 07:33:05 +03:00
14 lines
194 B
PHP
14 lines
194 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace openvk\Web\Util\Makima;
|
|
|
|
class MasonryLayout
|
|
{
|
|
public $colSizes;
|
|
public $rowSizes;
|
|
public $tiles;
|
|
public $width;
|
|
public $height;
|
|
}
|