Initial bookinfo

This commit is contained in:
kplaczek
2022-05-23 20:36:28 +02:00
parent 02024755eb
commit 42e90c250e
5 changed files with 105 additions and 2 deletions

View 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;
}