mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
11 lines
192 B
PHP
11 lines
192 B
PHP
|
<?php declare(strict_types=1);
|
||
|
namespace openvk\Web\Util\Makima;
|
||
|
|
||
|
class MasonryLayout {
|
||
|
public $colSizes;
|
||
|
public $rowSizes;
|
||
|
public $tiles;
|
||
|
public $width;
|
||
|
public $height;
|
||
|
}
|