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