3900-MyRecipes-backup / Server / Models / Ingredient.cs
Ingredient.cs
Raw
using MyRecipes2.Shared;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace MyRecipes2.Server.Models
{
    public class Ingredient
    {
        public int Id { get; set; }

        public string Name { get; set; }

        public double Quantity { get; set; }

        public Recipe Recipe { get; set; }

        public IngredientUnit Unit { get; set; }

        public double Calories { get; set;  }
    }
}