Skip to content

Stock

// RB2 Core Connect
namespace CoreConnect.Erp;
public class ErpStockUpdate
{
public List<ErpStock> Stock { get; set; } = new List<ErpStock>();
}
public class ErpStock
{
public string? Id { get; set; }
public string? Sku { get; set; }
public string? Channel { get; set; }
public decimal? Availability { get; set; }
public string? Unit { get; set; }
public TimeSpan? AverageLeadTime { get; set; }
public Decimal? RestockDate { get; set; }
}