harvester-ui-extension/pkg/harvester/models/devices.harvesterhci.io.pcideviceclaim.js
andy.lee 188f058df8
add pcideviceclaim and usbdeviceclaim models
Signed-off-by: andy.lee <andy.lee@suse.com>
2025-02-20 17:23:31 +08:00

12 lines
252 B
JavaScript

import SteveModel from '@shell/plugins/steve/steve-class';
/**
* Class representing PCI Device Claim resource.
* @extends SteveModal
*/
export default class PCIDeviceClaim extends SteveModel {
cleanForSave(data, _forNew) {
return data;
}
}