#pragma once #include class DeviceDAO { public: [[nodiscard]] static bool upsertDevice(const DeviceInfo &device); [[nodiscard]] static bool markDevicesOfflineExcept(const QStringList &onlineDeviceIds); [[nodiscard]] static bool updateImage(const QString &deviceId, const QByteArray &imageData); [[nodiscard]] static QList getAllDevices(); };