5dd23ddf0b7b316fe8aa4dd2eff592a2c7edc80b
[shpub.git] / src / shpub / Config / Host.php
1 <?php
2 namespace shpub;
3
4 class Config_Host
5 {
6     /**
7      * (Base) server URL
8      *
9      * @var string
10      */
11     public $server;
12
13     /**
14      * User URL
15      *
16      * @var string
17      */
18     public $user;
19
20     /**
21      * Micropub access token
22      *
23      * @var string
24      */
25     public $token;
26
27     /**
28      * Host information
29      *
30      * @var Config_HostEndpoints
31      */
32     public $endpoints;
33
34     /**
35      * If this host is the default one
36      *
37      * @var boolean
38      */
39     public $default;
40 }
41 ?>