Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

InventoryBalanceChangeType.cs

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
}