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

namespace MyRecipes2.Shared
{
    public enum IngredientUnit
    {
        Cup,
        Milliliter,
        Gram,
        Miligram,
        Tablespoon,
        Teaspoon,
        None
    }
}