2020-05-17 20:43:04 +02:00
|
|
|
#include "PluginMetaInformation.h"
|
|
|
|
|
2020-05-28 20:51:31 +02:00
|
|
|
PluginMetaInformation::PluginMetaInformation(const PluginMetaInformation &other) {
|
2022-02-04 16:25:44 +01:00
|
|
|
this->name = other.name;
|
|
|
|
this->author = other.author;
|
|
|
|
this->version = other.version;
|
|
|
|
this->license = other.license;
|
2020-05-17 20:43:04 +02:00
|
|
|
this->buildtimestamp = other.buildtimestamp;
|
2022-02-04 16:25:44 +01:00
|
|
|
this->description = other.description;
|
|
|
|
this->size = other.size;
|
|
|
|
this->storageId = other.storageId;
|
2023-10-07 22:27:06 +02:00
|
|
|
this->wupsversion = other.wupsversion;
|
2020-05-17 20:43:04 +02:00
|
|
|
}
|