filedata.h: Model of files table in database

Tento commit je obsažen v:
Albert S. 2019-04-16 08:50:31 +02:00
rodič c248cf8368
revize 6565d94075

13
cli/filedata.h Normální soubor
Zobrazit soubor

@ -0,0 +1,13 @@
#ifndef FILEDATA_H
#define FILEDATA_H
#include <QString>
class FileData
{
public:
QString absPath;
uint mtime;
uint size;
QChar filetype;
};
#endif // FILEDATA_H