using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Server { public class RootDataOfGasStation { public int GasStationID { get; set; } public string Address { get; set; } public List FuelInCurrentGasStation { get; set; } } }