using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Server { public class FuelInCurrentGasStation { public int IDFuelType { get; set; } public string NameFuelType { get; set; } public double Price { get; set; } public int AmountOfFuel { get; set; } } }