using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CAPI.Custom.Entities { //sp_CAPI1_GetSupplierPricelistPartsByPartNumbers public class SupplierPriceListPartResult { public string PartNumber { get; set; } public string AlternateNumber { get; set; } public string SupplierName { get; set; } public string Brand { get; set; } public string Condition { get; set; } public string Currency { get; set; } public string LeadTime { get; set; } public string Note { get; set; } public int Availability { get; set; } public decimal SalesPrice { get; set; } public decimal WeightKG { get; set; } public string Description { get; set; } } }