| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- namespace Fuel01
- {
- public class Vente
- {
- public string epreuve_vt { get; set; } = string.Empty;
- public string station_vt { get; set; }
- public String vehi_vt { get; set; }
- public string prod_vt { get; set; }
- public DateTime date_vt { get; set; }
- public float qtt_vt { get; set; }
- public float pu_vt { get; set; }
- public float ht_vt { get; set; }
- public float tva_vt { get; set; }
- public float ttc_vt { get; set; }
- public float txtva_vt { get; set; }
- }
- }
|