1# Copyright (c) 2019 Ultimaker B.V.
2# Cura is released under the terms of the LGPLv3 or higher.
3from ..BaseModel import BaseModel
4
5
6class ClusterBuildPlate(BaseModel):
7    """Class representing a cluster printer"""
8
9    def __init__(self, type: str = "glass", **kwargs) -> None:
10        """Create a new build plate
11
12        :param type: The type of build plate glass or aluminium
13        """
14        self.type = type
15        super().__init__(**kwargs)
16