Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Catalog;
///
/// Represents a stock quantity change entry
///
public partial class StockQuantityHistory : BaseEntity
{
///
/// Gets or sets the stock quantity adjustment
///
public int QuantityAdjustment { get; set; }
///
/// Gets or sets current stock quantity
///
public int StockQuantity { get; set; }
///
/// Gets or sets the message
///
public string Message { get; set; }
///
/// Gets or sets the date and time of instance creation
///
public DateTime CreatedOnUtc { get; set; }
///
/// Gets or sets the product identifier
///
public int ProductId { get; set; }
///
/// Gets or sets the product attribute combination identifier
///
public int? CombinationId { get; set; }
///
/// Gets or sets the warehouse identifier
///
public int? WarehouseId { get; set; }
}