12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Server
- {
- public class RootDataOfRefuling
- {
- public int RefuelingID { get; set; }
- public RootDataOfCar Car { get; set; }
- public int CurrentFuelID { get; set; }
- public int GasStationID { get; set; }
- public int VolumeFuel { get; set; }
- public DataOfCamera DataOfCamera { get; set; }
- public string KeySession { get; set; }
- }
- }
|