mirror of
https://github.com/portainer/portainer.git
synced 2025-07-25 08:19:40 +02:00
* refactor(app): move storidge to new 'integrations' module * style(storidge): revert TODO note removal
9 lines
246 B
JavaScript
9 lines
246 B
JavaScript
export function StoridgeDriveModel(data) {
|
|
this.Id = data.driveid;
|
|
this.Node = data.node;
|
|
this.Use = data.use;
|
|
this.Status = data.drivestatus.toLowerCase();
|
|
this.Size = data.size;
|
|
this.Type = data.type;
|
|
this.Device = data.device;
|
|
}
|