BookStack/app/Auth/Permissions/SimpleEntityData.php

13 lines
199 B
PHP
Raw Normal View History

<?php
namespace BookStack\Auth\Permissions;
class SimpleEntityData
{
public int $id;
public string $type;
public int $owned_by;
public ?int $book_id;
public ?int $chapter_id;
2022-07-17 09:32:16 +00:00
}