mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-17 22:29:15 +00:00
15 lines
235 B
Dart
15 lines
235 B
Dart
|
class DiskVolume {
|
||
|
int gbUsed = 0;
|
||
|
int gbTotal = 0;
|
||
|
String name = '';
|
||
|
bool root = false;
|
||
|
|
||
|
/// from 0.0 to 1.0
|
||
|
double percentage = 0.0;
|
||
|
}
|
||
|
|
||
|
class DiskStatus {
|
||
|
bool isDiskOkay = false;
|
||
|
List<DiskVolume> diskVolumes = [];
|
||
|
}
|