Add Generic service - all services should have a type model

This commit is contained in:
Deon George
2020-12-02 21:36:36 +11:00
parent 4718bf3057
commit 20ddacd9a3
3 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<?php
namespace App\Models\Product;
use App\Models\Base\ProductType;
class Generic extends ProductType
{
}