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