mirror of
https://git.crystalyx.net/Xefir/repod.git
synced 2024-12-28 01:32:49 +01:00
18 lines
294 B
PHP
18 lines
294 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\GPodderSync\Db\SubscriptionChange;
|
|
|
|
use OCP\AppFramework\Db\Entity;
|
|
|
|
class SubscriptionChangeEntity extends Entity implements \JsonSerializable
|
|
{
|
|
public $id;
|
|
|
|
/**
|
|
* @return array<string,mixed>
|
|
*/
|
|
public function jsonSerialize(): mixed {}
|
|
}
|