20 lines
485 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Consulenza.WebTemplateModeler.Entity
{
public class Template
{
public int Id{ get; set; }
public string Nome{ get; set; }
public string CodicePb{ get; set; }
public int IdModello{ get; set; }
public List<Option> Options { get; set; }
public string IsDefault { get; set; }
public List<SchedaTemplate> Schede { get; set; }
}
}