mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2025-09-06 10:32: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 {
|
||||
|
||||
ChapterInfo::ChapterInfo() {}
|
||||
ChapterInfo::ChapterInfo(const ChapterInfo &other) :
|
||||
m_startPositionTicks(other.m_startPositionTicks),
|
||||
m_name(other.m_name),
|
||||
m_imagePath(other.m_imagePath),
|
||||
m_imageDateModified(other.m_imageDateModified),
|
||||
m_imageTag(other.m_imageTag){}
|
||||
|
||||
ChapterInfo ChapterInfo::fromJson(QJsonObject source) {
|
||||
ChapterInfo instance;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue