feat: add file data complete

This commit is contained in:
semenov
2026-03-11 11:46:11 +03:00
parent 74937bc64d
commit 6bfe260e47
6 changed files with 16 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ struct FileData
{
QString path;
QString hash;
QString lastUpdate;
bool operator==(const FileData& other)const{
if(this->path==(other.path) && this->hash == other.hash) return true;