Initial commit

This commit is contained in:
2026-07-05 21:52:31 +02:00
commit 93259f5b6d
35 changed files with 2389 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
namespace OCA\MoneyPlanner\Db;
use JsonSerializable;
use OCP\AppFramework\Db\Entity;
class Account extends Entity implements JsonSerializable {
protected $name;
protected $userId;
public function jsonSerialize() {
return [
'id' => $this->id,
'userId' => $this->userId,
'name' => $this->name
];
}
}
?>