0aa1b89b创建于 2023年5月26日历史提交
<?php


namespace Module\Blog\Type;


use ModStart\Core\Type\BaseType;

class BlogDarkModeType implements BaseType
{
    const AUTO = 'auto';
    const TIME = 'time';

    public static function getList()
    {
        return [
            self::AUTO => '跟随系统',
            self::TIME => '按时间段'
        ];
    }

}