2025-06-09 15:42:22 +02:00

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';
}