blob: 03dab9e6dc66e939670f433a4d792e70e5c96ba2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
namespace WpfTest\Model;
use WpfTest\Model;
class ActorEndpoints extends Model {
public string $basicFeed;
public ?string $fullFeed;
public ?string $follow;
public ?string $unfollow;
public ?string $block;
public ?string $unblock;
public ?string $subscribe;
public ?string $unsubscribe;
}
|