9 lines
149 B
Python
9 lines
149 B
Python
from enum import IntEnum, auto
|
|
|
|
|
|
class Relations(IntEnum):
|
|
isFitOf = auto()
|
|
hasFit = auto()
|
|
isFitPartOf = auto()
|
|
hasFitPart = auto()
|