You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
296 B
17 lines
296 B
|
4 days ago
|
from dataclasses import dataclass
|
||
|
|
|
||
|
|
|
||
|
|
__all__ = ["ScriptObjectMeta"]
|
||
|
|
|
||
|
|
|
||
|
|
@dataclass
|
||
|
|
class ScriptObjectMeta:
|
||
|
|
"""
|
||
|
|
Metadata which is stored on nodes representing ScriptObjects.
|
||
|
|
"""
|
||
|
|
|
||
|
|
# Key into constants table to retrieve the real ScriptObject.
|
||
|
|
constant_name: str
|
||
|
|
|
||
|
|
class_fqn: str
|