mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 23:01:29 +00:00
11 lines
150 B
PHP
11 lines
150 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services\IGDB\Models;
|
|
|
|
class Game extends BaseModel
|
|
{
|
|
protected const string ENDPOINT = 'games';
|
|
}
|