11 lines
182 B
Python
11 lines
182 B
Python
from enum import Enum
|
|
|
|
|
|
class UnitRadiationFormat(str, Enum):
|
|
GRAY = 'gray'
|
|
SIEVERT = 'sievert'
|
|
RAD = 'rad'
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|