mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2025-09-08 18:52:45 +00:00
WIP: logic rewrite
WIP: adding loaders
This commit is contained in:
parent
b9b08ab384
commit
2360b261f7
1769 changed files with 124903 additions and 1963 deletions
|
@ -33,6 +33,14 @@ namespace Jellyfin {
|
|||
namespace DTO {
|
||||
|
||||
ConfigurationPageInfo::ConfigurationPageInfo() {}
|
||||
ConfigurationPageInfo::ConfigurationPageInfo(const ConfigurationPageInfo &other) :
|
||||
m_name(other.m_name),
|
||||
m_enableInMainMenu(other.m_enableInMainMenu),
|
||||
m_menuSection(other.m_menuSection),
|
||||
m_menuIcon(other.m_menuIcon),
|
||||
m_displayName(other.m_displayName),
|
||||
m_configurationPageType(other.m_configurationPageType),
|
||||
m_pluginId(other.m_pluginId){}
|
||||
|
||||
ConfigurationPageInfo ConfigurationPageInfo::fromJson(QJsonObject source) {
|
||||
ConfigurationPageInfo instance;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue