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

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Structure\Modules;

final readonly class Data
{
    /**
     * @param list<Byte> $init
     */
    public function __construct(
        public array $init,
        public DataMode $mode,
    ) {
    }
}