network_inventory/devices/models/__init__.py
Andreas Zweili 441fda2e1f add HardwareModel to the device app
devices like computers etc. usually have a hardware model/type. E.g. Dell
Precision 5530. In order to use the same name consistently we have the option
to select the model name from a drop down.
2020-02-14 20:26:24 +01:00

10 lines
182 B
Python

from .warranty import Warranty, WarrantyType
from .device import (
ConnectedDevice,
Device,
DeviceCategory,
DeviceInNet,
DeviceManufacturer,
HardwareModel,
)