aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Structure/Modules/ExportDescs/Table.php
blob: d9501bdf21598a95e991c6337174f62ec8f253ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Structure\Modules\ExportDescs;

use Nsfisis\Waddiwasi\Structure\Modules\ExportDesc;
use Nsfisis\Waddiwasi\Structure\Types\TableIdx;

final readonly class Table extends ExportDesc
{
    protected function __construct(
        public TableIdx $table,
    ) {
    }
}