You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
379 B
21 lines
379 B
4 weeks ago
|
<?php
|
||
|
|
||
|
namespace App\Dataclasses;
|
||
|
|
||
|
class DatabaseFolkTuneDetails
|
||
|
{
|
||
|
public string $ID;
|
||
|
public string $Title;
|
||
|
|
||
|
public string $Copyright;
|
||
|
|
||
|
public array $Variants;
|
||
|
|
||
|
|
||
|
public function __construct(array $assocArray)
|
||
|
{
|
||
|
$this->ID = $assocArray['ID'];
|
||
|
$this->Title = $assocArray['Title'];
|
||
|
$this->Copyright = $assocArray['Copyright'];
|
||
|
}
|
||
|
}
|