Your IP : 216.73.216.79


Current Path : /var/www/html/bookstack/app/Entities/Tools/
Upload File :
Current File : /var/www/html/bookstack/app/Entities/Tools/BookSortMapItem.php

<?php

namespace BookStack\Entities\Tools;

class BookSortMapItem
{
    /**
     * @var int
     */
    public $id;

    /**
     * @var int
     */
    public $sort;

    /**
     * @var ?int
     */
    public $parentChapterId;

    /**
     * @var string
     */
    public $type;

    /**
     * @var int
     */
    public $parentBookId;

    public function __construct(int $id, int $sort, ?int $parentChapterId, string $type, int $parentBookId)
    {
        $this->id = $id;
        $this->sort = $sort;
        $this->parentChapterId = $parentChapterId;
        $this->type = $type;
        $this->parentBookId = $parentBookId;
    }
}