Product.cs 724 B

1234567891011121314151617181920212223242526272829303132
  1. using Fuel01;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Convert
  8. {
  9. public class Product
  10. {
  11. public List<Presta> prestas { get; set; }
  12. }
  13. public class Presta
  14. {
  15. public string sta_pr { get; set; }
  16. public List<Achat> carburants { get; set; }
  17. public List<Achat> autres { get; set; }
  18. }
  19. public class Achat
  20. {
  21. public string prod_pr { get; set; }
  22. public string lib_pr { get; set; }
  23. public string unite_pr { get; set; }
  24. public decimal pu_pr { get; set; }
  25. public decimal tva_pr { get; set; }
  26. public decimal ttc_pr { get; set; }
  27. }
  28. }