using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MP.Core.Conf { public class RecipeConfig { /// /// File di configurazione template ricetta /// public string TemplateFile { get; set; } = ""; /// /// Numero di righe da creare x ricetta /// public int NumRow { get; set; } = 1; /// /// Configurazione ricetta x header /// public RecipeBlockConfig HeadConf { get; set; } = new RecipeBlockConfig(); /// /// Configurazione ricetta x rows /// public RecipeBlockConfig RowsConf { get; set; } = new RecipeBlockConfig(); } }