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

namespace MyRecipes2.Shared
{
    public class CreateRecipeRequestDto
    {
        public string Name { get; set; }

        public List<IngredientDto> Ingredients { get; set; }

        public List<string> Method { get; set; }

        public List<MealTypeDto> MealTypes { get; set; }

        public int? ImageId { get; set; }

        public string CreatedById { get; set; }
    }
}