Files
kittycad.py/kittycad/models/unit_charge_format.py

10 lines
177 B
Python
Raw Normal View History

2022-07-25 22:46:48 +00:00
from enum import Enum
class UnitChargeFormat(str, Enum):
COULOMB = 'coulomb'
AMPERE_HOUR = 'ampere_hour'
def __str__(self) -> str:
return str(self.value)