nextcloud-desktop/src/mirall/syncresult.h

22 lines
257 B
C
Raw Normal View History

#ifndef MIRALL_SYNCRESULT_H
#define MIRALL_SYNCRESULT_H
#include <QStringList>
namespace Mirall
{
class SyncResult
{
public:
SyncResult();
~SyncResult();
private:
QStringList _deletedSource;
QStringList _deletedDestination;
};
}
#endif