Files
prodejna/core/data/system.cpp
T
pepa 836521e533 Added ability to store creator, updater, date of create and date of edit on entities- columns for this added to Voucher and CampData.
Removed permission check from Service::loadById- caused access violation when user had not have read permission.
2017-08-21 14:16:43 +02:00

37 lines
363 B
C++

#include "system.h"
System::System()
{
}
System::~System()
{
}
int System::id() const
{
return m_id;
}
void System::setId(int id)
{
m_id = id;
}
QString System::pluginId() const
{
return m_pluginId;
}
QString System::settings() const
{
return m_settings;
}
void System::setSettings(const QString &settings)
{
m_settings = settings;
}