Files
RRJServer/LibInstructorsAndTrainees/connectorToServer/Core/FileData.h
2026-03-11 11:46:11 +03:00

34 lines
491 B
C

#include <QList>
#include <QString>
#ifndef FILEDATA_H
#define FILEDATA_H
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;
return false;
}
}; //путь
struct SAttribute
{
QString name;
QString value;
};
struct SXmlAnswerTag{
QString elementName;
QList<SAttribute> attr;
};
#endif // FILEDATA_H