Permette di inviare degli archivi generici personalizzati.
| # | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
|---|---|---|---|---|---|
| 1 | TABELLA | Codice tabella interna | Stringa | 100 | |
| 2 | CODICE | Codice | Stringa | 100 | |
| 3 | descrizione | descrizione codice | Stringa | 200 | |
| 4 | vincolo | vincolo valore | Bool |
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_ARCHIVIO xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<ARCHIVIO>
<TABELLA />
<CODICE />
<descrizione />
<vincolo>false</vincolo>
</ARCHIVIO>
</TABELLA_ARCHIVIO>
public partial class ARCHIVIO
{
[Indexed(Name = "IX_PK_ARCHIVIO", Order = 1, Unique = true), NotNull, MaxLengthAttribute(100)]
public string TABELLA { get; set; }
[Indexed(Name = "IX_PK_ARCHIVIO", Order = 2, Unique = true), NotNull, MaxLengthAttribute(100)]
public string CODICE { get; set; }
[MaxLengthAttribute(200)]
public string descrizione { get; set; }
public bool vincolo { get; set; }
}