Last files for merge

This commit is contained in:
Francesco D'Amico
2025-03-19 16:33:40 +01:00
parent b9d0bf2170
commit 02533e9bfb
10 changed files with 41 additions and 42 deletions
@@ -1,14 +1,11 @@
namespace Francesco.Recipes.World.Models.BackendModels.Unit;
namespace Francesco.Recipes.World.Models.BackendModels.Unit
{
using Francesco.Recipes.World.Models.BackendModels.Ingredient;
using Francesco.Recipes.World.Models.BackendModels.RecipeIngredient;
public class Unit
{
public Guid Id{ get; set; }
public string Name { get; set; }
public string Symbol { get; set; }
public Guid Id { get; set; }
public string Name { get; set; } = string.Empty;
public string Symbol { get; set; } = string.Empty;
public virtual ICollection<RecipeIngredient> RecipeIngredient { get; set; } = new List<RecipeIngredient>();
}
}
}