Contiene il mapping tra codice articolo e nome file file immagini e documenti
# | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
---|---|---|---|---|---|
1 | Model | Codice modello | Stringa | 250 | Fisso a MAGART |
2 | ModelKey | Chiave del modello | Stringa | 250 | codice dell'articolo |
3 | FileName | Nome del file | Stringa | ||
4 | MediaType | Tipo media | Stringa | 250 | IMG per le immagini e DOC per i documenti |
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_MEDIA xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<MEDIA>
<Model />
<ModelKey />
<FileName />
<MediaType />
 </MEDIA>
</TABELLA_MEDIA>
public partial class MEDIA { [MaxLengthAttribute(250)] public string Model { get; set; } [MaxLengthAttribute(250)] public string ModelKey { get; set; } public string FileName { get; set; } [MaxLengthAttribute(250)] public string MediaType { get; set; } }