aboutsummaryrefslogtreecommitdiffhomepage
path: root/Digitigrade/Model/NotePrivacyScope.php
blob: 84d84f24b596ed99e1119ced81b61c8a2309dd1f (plain)
1
2
3
4
5
6
7
8
9
<?php
namespace Digitigrade\Model;

enum NotePrivacyScope: string {
    case PUBLIC = 'public';
    case FOLLOWERS = 'followers';
    case MUTUALS = 'mutuals';
    case NONE = 'none';
}