17 lines
319 B
C#
17 lines
319 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Consulenza.WebTemplateModeler.Entity
|
|
{
|
|
public class Parametro
|
|
{
|
|
|
|
public string Key { get; set; }
|
|
public string Value { get; set; }
|
|
|
|
public List<Parametro> Parametri { get; set; }
|
|
}
|
|
}
|