mirror of https://github.com/portainer/portainer
10 lines
246 B
JavaScript
10 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;
|
||
|
}
|