2025-07-11 13:52:19 +00:00

6 lines
141 B
Python

from typing import ClassVar
from .base_nodes import UserBaseNode
class UserNode(UserBaseNode):
__primarylabel__: ClassVar[str] = 'User'