initial commit

This commit is contained in:
2021-08-24 19:59:30 +02:00
commit 7bfed5a48b
11 changed files with 510 additions and 0 deletions

18
src/Entities/Album.php Normal file
View File

@ -0,0 +1,18 @@
<?php
namespace PhotoPrismUpload\Entities;
use Monolog\Logger;
class Album
{
public string $uid = '';
public string $slug = '';
public string $title = '';
public function __construct(
array $response
) {
$this->uid = $response['UID'];
$this->slug = $response['Slug'];
$this->title = $response['Title'];
}
}