12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace OC\Settings;
- use OCP\AppFramework\Db\Entity;
- class AuthorizedGroup extends Entity implements \JsonSerializable {
-
- protected $groupId;
-
- protected $class;
- public function jsonSerialize(): array {
- return [
- 'id' => $this->id,
- 'group_id' => $this->groupId,
- 'class' => $this->class
- ];
- }
- }
|