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

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Structure\Modules;

use Nsfisis\Waddiwasi\Structure\Types\MemType;

final readonly class Mem
{
    public function __construct(
        public MemType $type,
    ) {
    }
}