using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebAPI.Models { public class ScanLineCode { public string billno { get; set; } public string packagebarcode { get; set; } public List barcodes { get; set; } } public class CartItem { public string barcode { get; set; } } }