tables/src/ActionBtn/ActionBtn.php
2024-07-15 16:25:03 +03:00

22 lines
351 B
PHP

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