Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Customers;
///
/// Represents a reward point history entry
///
public partial class RewardPointsHistory : BaseEntity
{
///
/// Gets or sets the customer identifier
///
public int CustomerId { get; set; }
///
/// Gets or sets the store identifier in which these reward points were awarded or redeemed
///
public int StoreId { get; set; }
///
/// Gets or sets the points redeemed/added
///
public int Points { get; set; }
///
/// Gets or sets the points balance
///
public int? PointsBalance { get; set; }
///
/// Gets or sets the used amount
///
public decimal UsedAmount { 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 date and time when the points will no longer be valid
///
public DateTime? EndDateUtc { get; set; }
///
/// Gets or sets the number of valid points that have not yet spent (only for positive amount of points)
///
public int? ValidPoints { get; set; }
///
/// Used with order
///
public Guid? UsedWithOrder { get; set; }
}