1
0

filedata.h: Model of files table in database

Este cometimento está contido em:
Albert S. 2019-04-16 08:50:31 +02:00
ascendente 664268fa7c
cometimento 8622717ded

13
cli/filedata.h Ficheiro normal
Ver ficheiro

@ -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