<?php
declare(strict_types=1);
namespace JanusHercules\IndeedCampaignManagement\Domain\Entity;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity]
#[ORM\Table(name: 'icm_sync_config_other_campaign_pool_size_entries')]
class SyncConfigOtherCampaignPoolSizeEntry
{
public function __construct(
int $otherCampaignPoolSize
) {
$this->otherCampaignPoolSize = $otherCampaignPoolSize;
}
#[ORM\Id]
#[ORM\Column(
type: Types::SMALLINT
)]
private int $otherCampaignPoolSize;
public function getOtherCampaignPoolSize(): int
{
return $this->otherCampaignPoolSize;
}
}