1
0

Property.php 649 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OCA\DAV\Db;
  8. use OCP\AppFramework\Db\Entity;
  9. /**
  10. * @method string getUserid()
  11. * @method string getPropertypath()
  12. * @method string getPropertyname()
  13. * @method string getPropertyvalue()
  14. */
  15. class Property extends Entity {
  16. /** @var string|null */
  17. protected $userid;
  18. /** @var string|null */
  19. protected $propertypath;
  20. /** @var string|null */
  21. protected $propertyname;
  22. /** @var string|null */
  23. protected $propertyvalue;
  24. /** @var int|null */
  25. protected $valuetype;
  26. }