mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2025-09-07 18:42:44 +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 {
|
||||
|
||||
AccessSchedule::AccessSchedule() {}
|
||||
AccessSchedule::AccessSchedule(const AccessSchedule &other) :
|
||||
m_jellyfinId(other.m_jellyfinId),
|
||||
m_userId(other.m_userId),
|
||||
m_dayOfWeek(other.m_dayOfWeek),
|
||||
m_startHour(other.m_startHour),
|
||||
m_endHour(other.m_endHour){}
|
||||
|
||||
AccessSchedule AccessSchedule::fromJson(QJsonObject source) {
|
||||
AccessSchedule instance;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue