12 lines
206 B
PHP
12 lines
206 B
PHP
<?php
|
|
|
|
namespace App\Entities\Equipment;
|
|
|
|
use App\Models\Equipment\SoftwareModel;
|
|
|
|
class SoftwareEntity extends EquipmentEntity
|
|
{
|
|
const PK = SoftwareModel::PK;
|
|
const TITLE = SoftwareModel::TITLE;
|
|
}
|