Advertisement
Guest User

SPListaComproVendoPersonaliApertiResponse

a guest
Oct 31st, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.77 KB | None | 0 0
  1. public class SPListaComproVendoPersonaliApertiResponse
  2.     {
  3.         public List<ListaComproVendoPersonaliAperti> ComproVendoPersonali { get; set; }
  4.         public SPOutCome OutCome { get; set; }
  5.     }
  6.  
  7.     public class ListaComproVendoPersonaliAperti
  8.     {
  9.         public string Operazione { get; set; }
  10.         public Int32 IDComproVendo { get; set; }
  11.         public DateTime DataOperazione { get; set; }
  12.         public string Sport { get; set; }
  13.         public string Marca { get; set; }
  14.         public string Modello { get; set; }
  15.         public string Misura { get; set; }
  16.         public decimal PrezzoIvato { get; set; }
  17.         public Int32 PercentualeSconto { get; set; }
  18.         public decimal NettoIva { get; set; }
  19.         public bool Letto { get; set; }
  20.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement