diff options
| author | winter | 2024-12-08 18:04:37 +0000 |
|---|---|---|
| committer | winter | 2024-12-08 18:04:37 +0000 |
| commit | b00185ddbac9ac3de975a3954f2ede2f24458f6a (patch) | |
| tree | 265ccaae497e2788ed7de8f6b08a0d5a77ea16dc /WpfTest/Model/NotePrivacy.php | |
| parent | 13647d55bd8085a2b3a686b8aad3b28b0faf693a (diff) | |
implement notes
Diffstat (limited to 'WpfTest/Model/NotePrivacy.php')
| -rw-r--r-- | WpfTest/Model/NotePrivacy.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/WpfTest/Model/NotePrivacy.php b/WpfTest/Model/NotePrivacy.php new file mode 100644 index 0000000..b7ed58a --- /dev/null +++ b/WpfTest/Model/NotePrivacy.php @@ -0,0 +1,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; +}
\ No newline at end of file |
