1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-06-07 04:22:06 +03:00
bookstack/app/Auth/Permissions/SimpleEntityData.php
Dan Brown 451e4ac452
Fixed collapsed perm. gen for book sub-items.
Also converted the existing "JointPermission" usage to the new
collapsed permission system.
2022-12-23 14:05:43 +00:00

12 lines
173 B
PHP

<?php
namespace BookStack\Auth\Permissions;
class SimpleEntityData
{
public int $id;
public string $type;
public ?int $book_id;
public ?int $chapter_id;
}