Definisce la lista delle caratteristiche
| # | COLONNA | DECRIZIONE | TIPO | LEN | NOTE | 
|---|---|---|---|---|---|
| 1 | CODICE | Codice Caratteristica | Stringa | 50 | |
| 2 | Descrizione | Descrizione Caratteristica | Stringa | 250 | 
Esempio
'001','Fresco' '002','Surgelato' '003','Bio' '004','Vegano'
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_CARATTERISTICHE xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
  <CARATTERISTICHE>
    <CODICE/>
    <Descrizione/>
  </CARATTERISTICHE>
</TABELLA_CARATTERISTICHE>
    public partial class CARATTERISTICHE
    {
        [PrimaryKey, MaxLengthAttribute(50)]
        public string CODICE{ get; set; }
        [MaxLengthAttribute(250)]
        public string Descrizione{ get; set; }
      
    }