Try your search with a different keyword or use * as a wildcard.
namespace Nop.Plugin.Misc.Zettle.Domain;
///
/// Represents an inventory balance change type enumeration
///
public enum InventoryBalanceChangeType
{
///
/// Start tracking
///
StartTracking,
///
/// Purchase
///
Purchase,
///
/// Re-stock
///
Restock,
///
/// Void
///
Void
}