1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-11-16 08:22:23 +03:00
Files
bookstack/app/Auth/Permissions/SimpleEntityData.php
2022-07-17 10:32:16 +01:00

14 lines
228 B
PHP

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