df4e2dddec
Portable occ-based config, OCS endpoints for APK registration, notification relay, and server-side push dispatch.
18 lines
352 B
PHP
18 lines
352 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\F7Push\Model;
|
|
|
|
class PushMessage {
|
|
public function __construct(
|
|
public readonly string $userId,
|
|
public readonly string $title,
|
|
public readonly string $body,
|
|
public readonly string $source = 'f7push',
|
|
public readonly string $priority = 'normal',
|
|
public readonly ?string $url = null,
|
|
) {
|
|
}
|
|
}
|