Files
LesRecettesDePapis/src/Domain/Ingredients/Ingredient.php

13 lines
169 B
PHP
Raw Normal View History

2026-04-02 16:33:32 +02:00
<?php
namespace App\Domain\Ingredients;
use App\Domain\Model;
class Ingredient extends Model {
public int $num_ingredient;
public string $nom_ingredient;
}