20 lines
475 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Consulenza.WebTemplateModeler.Entity
{
public class Modello
{
public int Id {get;set;}
public string Nome {get;set;}
public string Rete { get; set; }
public List<Scheda> Schede { get; set; }
public List<Template> Templates { get; set; }
public List<Option> Options { get; set; }
public List<Tabs> Tabs { get; set; }
}
}