6 lines
188 B
Python
6 lines
188 B
Python
from typing import ClassVar, Optional
|
|
from ..base_nodes import CCBaseNode
|
|
|
|
class WorkerTimetableStructureNode(CCBaseNode):
|
|
__primarylabel__: ClassVar[str] = 'WorkerTimetableStructure'
|