// RB2 Core Connect namespace CoreConnect.Erp; public class ErpPriceUpdate{ public List<ErpPrice> Prices { get; set; } = new List<ErpPrice>();} public class ErpPrice{ public string? Id { get; set; } public string? Sku { get; set; } public string? Currency { get; set; } public decimal Price { get; set; } public string? Country { get; set; } public bool Available { get; set; } public List<string>? CustomerGroups { get; set; }}