12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- declare(strict_types=1);
- namespace OCA\DAV\CalDAV\Proxy;
- use OCP\AppFramework\Db\Entity;
- class Proxy extends Entity {
-
- protected $ownerId;
-
- protected $proxyId;
-
- protected $permissions;
- public function __construct() {
- $this->addType('ownerId', 'string');
- $this->addType('proxyId', 'string');
- $this->addType('permissions', 'int');
- }
- }
|