Files
kittycad.py/kittycad/models/unit_area_format.py
2022-07-25 22:46:48 +00:00

15 lines
333 B
Python

from enum import Enum
class UnitAreaFormat(str, Enum):
SQUARE_METER = 'square_meter'
SQUARE_FOOT = 'square_foot'
SQUARE_INCH = 'square_inch'
SQUARE_MILE = 'square_mile'
SQUARE_KILOMETER = 'square_kilometer'
HECTARE = 'hectare'
ACRE = 'acre'
def __str__(self) -> str:
return str(self.value)