repod/stubs/OCA/GPodderSync/Db/SubscriptionChange/SubscriptionChangeEntity.php

18 lines
294 B
PHP
Raw Normal View History

2023-08-24 10:48:10 +00:00
<?php
declare(strict_types=1);
namespace OCA\GPodderSync\Db\SubscriptionChange;
use OCP\AppFramework\Db\Entity;
class SubscriptionChangeEntity extends Entity implements \JsonSerializable
{
2023-12-23 16:50:52 +00:00
public $id;
2023-08-24 10:48:10 +00:00
/**
* @return array<string,mixed>
*/
2023-12-23 16:25:20 +00:00
public function jsonSerialize(): mixed {}
2023-08-24 10:48:10 +00:00
}