10 lines
236 B
PHP
10 lines
236 B
PHP
<?php
|
|
|
|
namespace App\Domain\Model\Cars\CarPropertyValues\V1\Battery;
|
|
|
|
enum CellChemistry: string
|
|
{
|
|
case LithiumIronPhosphate = 'LFP';
|
|
case LithiumNickelCobaltAluminumOxide = 'NCA';
|
|
case LithiumNickelManganeseOxide = 'NMC';
|
|
} |