7 lines
177 B
Python
7 lines
177 B
Python
|
from typing import List
|
||
|
from .construct_serialized import ConstructSerialized
|
||
|
|
||
|
class ConstructLevel:
|
||
|
Name : str
|
||
|
Description : str
|
||
|
Objects : List[ConstructSerialized]
|