Attachments... .

This commit is contained in:
Matias De lellis
2020-06-14 13:55:25 -03:00
parent 16d82bcbae
commit 20e150341c
16 changed files with 532 additions and 73 deletions

View File

@@ -16,6 +16,7 @@ class Note extends Entity implements JsonSerializable {
protected $sharedWith;
protected $isShared;
protected $tags;
protected $attachts;
protected $color;
protected $isPinned;
@@ -41,7 +42,8 @@ class Note extends Entity implements JsonSerializable {
'userid' => $this->userId,
'sharedwith' => $this->sharedWith,
'isshared' => $this->isShared,
'tags' => $this->tags
'tags' => $this->tags,
'attachts' => $this->attachts
];
}
}