mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-06-07 04:22:06 +03:00
Also converted the existing "JointPermission" usage to the new collapsed permission system.
12 lines
173 B
PHP
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;
|
|
}
|