mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-06 22:39:53 +08:00
35 lines
632 B
C++
35 lines
632 B
C++
#ifndef NODEPARAMETERS_H
|
|
#define NODEPARAMETERS_H
|
|
|
|
#include <QDateTime>
|
|
#include <QStringList>
|
|
|
|
#include <core/global.h>
|
|
|
|
#include "node.h"
|
|
|
|
namespace vnotex
|
|
{
|
|
class NodeParameters
|
|
{
|
|
public:
|
|
NodeParameters() = default;
|
|
|
|
NodeParameters(ID p_id);
|
|
|
|
ID m_id = Node::InvalidId;
|
|
|
|
ID m_signature = Node::InvalidId;
|
|
|
|
QDateTime m_createdTimeUtc = QDateTime::currentDateTimeUtc();
|
|
|
|
QDateTime m_modifiedTimeUtc = QDateTime::currentDateTimeUtc();
|
|
|
|
QStringList m_tags;
|
|
|
|
QString m_attachmentFolder;
|
|
};
|
|
}
|
|
|
|
#endif // NODEPARAMETERS_H
|