Apps
1 month ago
Collaboration
1 month ago
CollaborationComment
1 month ago
Collection
5 days ago
Form
5 days ago
Media
1 month ago
Page
5 days ago
Symbol
1 month ago
CollaborationCommentListFilterDTO.php
1 month ago
CollectionItemListFilterDTO.php
1 month ago
GoogleFontDTO.php
1 month ago
ListFilterDTO.php
1 month ago
UpsertCollectionItemDTO.php
1 month ago
GoogleFontDTO.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Kirki\App\DTO; |
| 4 | |
| 5 | defined('ABSPATH') || exit; |
| 6 | |
| 7 | use Kirki\Framework\DTO; |
| 8 | |
| 9 | class GoogleFontDTO extends DTO |
| 10 | { |
| 11 | /** @var string */ |
| 12 | public $family; |
| 13 | |
| 14 | /** @var string */ |
| 15 | public $fontUrl; |
| 16 | |
| 17 | /** @var string */ |
| 18 | public $localUrl; |
| 19 | |
| 20 | /** @var array */ |
| 21 | public $files; |
| 22 | } |