17 lines
416 B
Python
17 lines
416 B
Python
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
from __future__ import annotations
|
|
|
|
from Base.Metadata import export
|
|
|
|
from App.DocumentObjectGroup import DocumentObjectGroup
|
|
|
|
@export(Include="Mod/Assembly/App/BomGroup.h", Namespace="Assembly")
|
|
class BomGroup(DocumentObjectGroup):
|
|
"""
|
|
This class is a group subclass for boms.
|
|
|
|
Author: Ondsel (development@ondsel.com)
|
|
License: LGPL-2.1-or-later
|
|
"""
|