mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2025-09-06 18:32: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,12 @@ namespace Jellyfin {
|
|||
namespace DTO {
|
||||
|
||||
GroupInfoDto::GroupInfoDto() {}
|
||||
GroupInfoDto::GroupInfoDto(const GroupInfoDto &other) :
|
||||
m_groupId(other.m_groupId),
|
||||
m_groupName(other.m_groupName),
|
||||
m_state(other.m_state),
|
||||
m_participants(other.m_participants),
|
||||
m_lastUpdatedAt(other.m_lastUpdatedAt){}
|
||||
|
||||
GroupInfoDto GroupInfoDto::fromJson(QJsonObject source) {
|
||||
GroupInfoDto instance;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue