Files
2026-07-31 17:19:03 +09:00

14 lines
203 B
PHP

<?php
namespace App\Domain\ReportDuty\Models\ValueObjects;
class PeriodEnd
{
const FIELD_NAME = 'period_end';
public function getField(): string
{
return self::FIELD_NAME;
}
}