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

14 lines
207 B
PHP

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