Similar to FreshRSS core Contributes to https://github.com/FreshRSS/Extensions/issues/184
13 lines
226 B
PHP
13 lines
226 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShareByEmail\mailers;
|
|
|
|
class View extends \Minz_View {
|
|
|
|
public ?\FreshRSS_Entry $entry = null;
|
|
public string $content = '';
|
|
public string $subject = '';
|
|
public string $to = '';
|
|
}
|