harvester-ui-extension/pkg/harvester/models/devices.harvesterhci.io.pcideviceclaim.js
andy.lee f3e4a8afe8
add pcideviceclaim and usbdeviceclaim models
Signed-off-by: andy.lee <andy.lee@suse.com>
2025-04-08 15:11:55 +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;
}
}