diff options
Diffstat (limited to 'Digitigrade/Model/NotePrivacyInteractors.php')
| -rw-r--r-- | Digitigrade/Model/NotePrivacyInteractors.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Digitigrade/Model/NotePrivacyInteractors.php b/Digitigrade/Model/NotePrivacyInteractors.php new file mode 100644 index 0000000..8313e90 --- /dev/null +++ b/Digitigrade/Model/NotePrivacyInteractors.php @@ -0,0 +1,9 @@ +<?php +namespace Digitigrade\Model; + +enum NotePrivacyInteractors: string { + case ALL = 'all'; + case FOLLOWERS = 'followers'; + case MUTUALS = 'mutuals'; + case NONE = 'none'; +}
\ No newline at end of file |
