19 lines
335 B
PHP
19 lines
335 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace External\ZNZBundle\Dto;
|
|
|
|
class B2BFeedDefinition
|
|
{
|
|
public function __construct(
|
|
public string $category,
|
|
public string $userHash,
|
|
public string $format,
|
|
public string $currency,
|
|
public string $type,
|
|
public string $language,
|
|
) {
|
|
}
|
|
}
|