Correct Models

This commit is contained in:
Francesco D'Amico
2025-03-18 15:25:30 +01:00
parent d53729f798
commit 6125eb82ee
3 changed files with 26 additions and 27 deletions
@@ -7,8 +7,8 @@ namespace Francesco.Recipes.World.Models.BackendModels.Unit
public class Unit
{
public Guid Id{ get; set; }
public string? Name { get; set; }
public string? Symbol { get; set; }
public string Name { get; set; }
public string Symbol { get; set; }
public virtual ICollection<RecipeIngredient> RecipeIngredient { get; set; } = new List<RecipeIngredient>();
}
}