#pragma once
#include <QString>
#include <cstdint>
namespace whittle {
struct FileRecord {
QString relPath;
QString absPath;
std::int64_t size = 0;
std::int64_t mtimeNs = 0;
bool isDir = false;
bool operator==(const FileRecord&) const = default;
};
}