"""Printers plugin models.""" from .printer_extension import PrinterData # Legacy model for Machine-based architecture from .printer import Printer, PrinterType # New Asset-based models from .model_supply import ( # data-driven model -> toner/drum/waste mapping ModelSupply, SUPPLY_TYPES, SUPPLY_COLORS, CAPACITY_TIERS, ) __all__ = [ 'PrinterData', # Legacy 'Printer', # New 'PrinterType', # New 'ModelSupply', 'SUPPLY_TYPES', 'SUPPLY_COLORS', 'CAPACITY_TIERS', ]