using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BiskLog_Point_Of_Sale.OPS_Report.Sales.Classes { class Deliveries { public string truckLicense { get; set; } public string orderid { get; set; } public string recipient { get; set; } public string deliverydate { get; set; } public string deliverycost { get; set; } } }