summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/inventory/inventory-host.model.ts
blob: 22400113a07921f89acd3fd7ead44e4cda1263ed (plain)
1
2
3
4
5
6
import { InventoryDevice } from './inventory-devices/inventory-device.model';

export class InventoryHost {
  name: string;
  devices: InventoryDevice[];
}