Skip to content

Categories

// RB2 Core Connect
namespace CoreConnect.Pim;
public record DeletePimCategory
{
public string? Code { get; set; }
}
public record PimCategory
{
public string? Code { get; set; }
public string? Parent { get; set; }
public DateTime Updated { get; set; }
public int Position { get; set; }
public Dictionary<string, string>? Labels { get; set; }
}