Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Catalog;
///
/// Represents a low stock activity
///
public enum LowStockActivity
{
///
/// Nothing
///
Nothing = 0,
///
/// Disable buy button
///
DisableBuyButton = 1,
///
/// Unpublish
///
Unpublish = 2,
}