Initial bookinfo
This commit is contained in:
19
src/Api/AbstractBookInfo.php
Normal file
19
src/Api/AbstractBookInfo.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Techtube\Bookinfo\Api;
|
||||
|
||||
abstract class AbstractBookInfo
|
||||
{
|
||||
protected string $author;
|
||||
protected string $isbn;
|
||||
protected string $description;
|
||||
protected string $title;
|
||||
protected string $category;
|
||||
protected string $cover_url;
|
||||
protected int $pages;
|
||||
protected string $series;
|
||||
protected int $volume;
|
||||
protected string $language;
|
||||
protected string $datePublished;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user