mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-13 13:11:43 +00:00
12 lines
252 B
JavaScript
12 lines
252 B
JavaScript
import SteveModel from '@shell/plugins/steve/steve-class';
|
|
|
|
/**
|
|
* Class representing USB Device Claim resource.
|
|
* @extends SteveModal
|
|
*/
|
|
export default class USBDeviceClaim extends SteveModel {
|
|
cleanForSave(data, _forNew) {
|
|
return data;
|
|
}
|
|
}
|