mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
12 lines
290 B
PHP
12 lines
290 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Import\Quickbooks;
|
|
|
|
use App\Repositories\Import\Quickbooks\Repository;
|
|
use App\Repositories\Import\Quickbooks\Contracts\RepositoryInterface;
|
|
|
|
class ItemRepository extends Repository implements RepositoryInterface
|
|
{
|
|
protected string $entity = "Item";
|
|
}
|