Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Xml.Serialization;
- namespace F.C.R.Manager
- {
- [XmlRoot(ElementName = "codice")]
- public class Codice
- {
- [XmlElement(ElementName = "type")]
- public string Type { get; set; }
- [XmlElement(ElementName = "code")]
- public string Code { get; set; }
- }
- [XmlRoot(ElementName = "dettaglio")]
- public class Dettaglio
- {
- [XmlElement(ElementName = "elemento")]
- public string Elemento { get; set; }
- [XmlElement(ElementName = "valore")]
- public string Valore { get; set; }
- }
- [XmlRoot(ElementName = "caratteristiche")]
- public class Caratteristiche
- {
- //public List<Dettaglio> Dettaglio { get; set; }
- [XmlElement(ElementName = "dettaglio", Type = typeof(Dettaglio))]
- public List<Dettaglio> Dettaglio = new List<Dettaglio>();
- }
- [XmlRoot(ElementName = "prodotto")]
- public class Prodotto
- {
- [XmlElement(ElementName = "codice")]
- public string codiceid { get; set; }
- [XmlElement(ElementName = "descrizione")]
- public string Descrizione { get; set; }
- [XmlElement(ElementName = "prezzo")]
- public string Prezzo { get; set; }
- [XmlElement(ElementName = "codice", Type = typeof(Codice))]
- public Codice Codice { get; set; }
- [XmlElement(ElementName = "peso")]
- public string Peso { get; set; }
- [XmlElement(ElementName = "caratteristiche", Type = typeof(Caratteristiche))]
- public Caratteristiche Caratteristiche { get; set; }
- [XmlElement(ElementName = "famiglia")]
- public string Famiglia { get; set; }
- [XmlElement(ElementName = "macrofamiglia")]
- public string Macrofamiglia { get; set; }
- }
- [XmlRoot(ElementName = "prodotti")]
- public class Prodotti
- {
- [XmlElement(ElementName = "prodotto", Type = typeof(Prodotto))]
- //public List<Prodotto> Prodotto { get; set; }
- public List<Prodotto> Prodotto = new List<Prodotto>();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement