<?php

namespace App\Modules\{{ module }}\Application\Index;

use App\Modules\Shared\Domain\Bus\Query\Query;

class Index{{ module }}Query implements Query
{
    public function __construct(
        public readonly int $id,
        public readonly string $populate,
    ) {}
}
