Aggiunta form ricerca ingredienti

This commit is contained in:
2026-02-12 09:30:01 +01:00
parent b55d2a40db
commit 299c99955d
3 changed files with 226 additions and 0 deletions

20
RecipeSearch.cs Normal file
View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace PizzaExpress_Client
{
public partial class RecipeSearch : Form
{
public RecipeSearch()
{
InitializeComponent();
}
}
}