mirror of
https://codeberg.org/vlw/vlw.se.git
synced 2025-09-14 05:13:46 +02:00
* wip: 2024-06-19T13:31:53+0200 (1718796713) * fix: final touchups with bugfixes * fix: typo in widlcardsearch function * wip: 2024-07-05T14:14:12+0200 (1720181652) * wip: 2024-07-07T11:22:34+0200 (1720344154) * wip: 2024-07-07T11:22:34+0200 (1720344154)
31 lines
No EOL
624 B
PHP
31 lines
No EOL
624 B
PHP
<?php
|
|
|
|
namespace VLW\API\Databases\VLWdb\Models\Battlestation;
|
|
|
|
use victorwesterlund\xEnum;
|
|
|
|
enum EightyplusRatingEnum {
|
|
use xEnum;
|
|
|
|
case BASE;
|
|
case BRONZE;
|
|
case SILVER;
|
|
case GOLD;
|
|
case PLATINUM;
|
|
case TITANIUM;
|
|
}
|
|
|
|
enum PsuModel: string {
|
|
use xEnum;
|
|
|
|
const TABLE = "psu";
|
|
|
|
case ID = "id";
|
|
case POWER = "power";
|
|
case VENDOR_NAME = "vendor_name";
|
|
case VENDOR_MODEL = "vendor_model";
|
|
case TYPE_MODULAR = "type_modular";
|
|
case EIGHTYPLUS_RATING = "80plus_rating";
|
|
case DATE_AQUIRED = "date_aquired";
|
|
case IS_RETIRED = "is_retired";
|
|
} |