Connect the grid view to show disks

This commit is contained in:
Spiros
2025-05-26 16:59:32 +03:00
parent 3aaffcc238
commit 6101d77958
5 changed files with 43 additions and 32 deletions

7
include/diskitem.h Normal file
View File

@@ -0,0 +1,7 @@
#include <QString>
struct DiskItem {
QString name;
QString temperature;
QString health;
};