3900-MyRecipes-backup / Shared / IngredientDto.cs
IngredientDto.cs
Raw
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyRecipes2.Shared
{
    public class IngredientDto
    {
        public string Name { get; set; }
        public double Quantity { get; set; }
        public IngredientUnit Unit { get; set; }

        public double Calories { get; set; }
    }
}