21 lines
482 B
C#
21 lines
482 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Consulenza.WebTemplateModeler.Entity
|
|
{
|
|
public class Scheda
|
|
{
|
|
|
|
public int Id {get;set;}
|
|
public string NomeImmagine{get;set;}
|
|
public string TestoHTML{get;set;}
|
|
public int NumTab{get;set;}
|
|
public string Sezioni{get;set;}
|
|
public List<Vincolo> Vincoli{get;set;}
|
|
public List<Option> Options { get; set; }
|
|
|
|
}
|
|
}
|
|
|