Corret Models Unit and Category

This commit is contained in:
Francesco D'Amico
2025-03-18 14:20:53 +01:00
parent 45702aa4f2
commit d53729f798
4 changed files with 66 additions and 66 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>();
}
}