Inizio configuraizone modelli ricetta
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MP.Data.Conf
|
||||
{
|
||||
public class RecipeConfig
|
||||
{
|
||||
public string TemplateFile { get; set; } = "";
|
||||
/// <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();
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user