Files
fastmovieai/fastmovie-admin/plugin/marketing/utils/enum/BillingCycle.php
T

18 lines
282 B
PHP
Raw Normal View History

<?php
namespace plugin\marketing\utils\enum;
use app\expose\enum\builder\Enum;
class BillingCycle extends Enum
{
const MONTH = [
'label' => '按月',
'value' => 'month'
];
const YEAR = [
'label' => '按年',
'value' => 'year'
];
}