13 lines
169 B
PHP
13 lines
169 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Domain\Ingredients;
|
||
|
|
|
||
|
|
use App\Domain\Model;
|
||
|
|
|
||
|
|
class Ingredient extends Model {
|
||
|
|
|
||
|
|
public int $num_ingredient;
|
||
|
|
public string $nom_ingredient;
|
||
|
|
|
||
|
|
|
||
|
|
}
|