]> BookStack Code Mirror - bookstack/blob - app/Auth/Permissions/SimpleEntityData.php
Applied StyleCI changes
[bookstack] / app / Auth / Permissions / SimpleEntityData.php
1 <?php
2
3 namespace BookStack\Auth\Permissions;
4
5 class SimpleEntityData
6 {
7     public int $id;
8     public string $type;
9     public bool $restricted;
10     public int $owned_by;
11     public ?int $book_id;
12     public ?int $chapter_id;
13 }