tables/src/actionColumn/ActionColumn.php
2024-05-27 12:59:44 +03:00

20 lines
334 B
PHP

<?php
namespace Itguild\Tables\ActionColumn;
abstract class ActionColumn
{
protected string $baseUrl;
protected string $prefix;
protected int $id;
public function __construct(string $baseUrl, int $id)
{
$this->baseUrl = $baseUrl;
$this->id = $id;
}
abstract public function fetch();
}