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

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Structure\Modules;

final readonly class Import
{
    /**
     * @param Name $module
     * @param Name $name
     */
    public function __construct(
        public string $module,
        public string $name,
        public ImportDesc $desc,
    ) {
    }
}