Create Models for this Project

This commit is contained in:
Francesco D'Amico
2025-01-06 17:00:05 +01:00
parent 9ac2428a1d
commit b80a402d15
8 changed files with 77 additions and 1 deletions
@@ -0,0 +1,9 @@
namespace Francesco.Recipes.World.Models.BackendModels.Ingredient
{
public class Ingredient
{
public Guid Id { get; set; }
public string? Name { get; set; }
public string? Unit { get; set; }
}
}