Skip to content

Products

// RB2 Core Connect
namespace CoreConnect.Erp;
public class DeleteErpProduct
{
public string? Id { get; set; }
public string? Sku { get; set; }
public string? Key { get; set; }
}
public class ErpProduct
{
public string? Id { get; set; }
public string? Sku { get; set; }
public string? Ean { get; set; }
public string? Name { get; set; }
public string? Vendor { get; set; }
public bool Disabled { get; set; }
public DateTime? Created { get; set; }
public DateTime? Updated { get; set; }
public bool Available { get; set; }
public Dictionary<string, object> ExtraData { get; set; } = new();
}