blob: b7ed58a69b718e4503463a5da5323d0bfb6b6df6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
namespace WpfTest\Model;
use WpfTest\Model;
class NotePrivacy extends Model {
public NotePrivacyScope $scope;
/**
* @var Actor[]
*/
public array $alsoVisibleTo = [];
public bool $indexable;
public NotePrivacyInteractors $canReshare = NotePrivacyInteractors::all;
public NotePrivacyInteractors $canReply = NotePrivacyInteractors::all;
public NotePrivacyInteractors $canOtherInteract = NotePrivacyInteractors::all;
}
|