mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
29 lines
404 B
Dart
29 lines
404 B
Dart
class DiskInfo {
|
|
/*
|
|
{
|
|
"mountPath": "",
|
|
"mountLocation": "",
|
|
"usedPercent": 0,
|
|
"used": "",
|
|
"size": "",
|
|
"avail": ""
|
|
}
|
|
*/
|
|
|
|
late String mountPath;
|
|
late String mountLocation;
|
|
late int usedPercent;
|
|
late String used;
|
|
late String size;
|
|
late String avail;
|
|
|
|
DiskInfo(
|
|
this.mountPath,
|
|
this.mountLocation,
|
|
this.usedPercent,
|
|
this.used,
|
|
this.size,
|
|
this.avail,
|
|
);
|
|
}
|