namespace Nop.Core.Domain.Catalog; /// /// Represents a tier price /// public partial class TierPrice : BaseEntity { /// /// Gets or sets the product identifier /// public int ProductId { get; set; } /// /// Gets or sets the store identifier (0 - all stores) /// public int StoreId { get; set; } /// /// Gets or sets the customer role identifier /// public int? CustomerRoleId { get; set; } /// /// Gets or sets the quantity /// public int Quantity { get; set; } /// /// Gets or sets the price /// public decimal Price { get; set; } /// /// Gets or sets the start date and time in UTC /// public DateTime? StartDateTimeUtc { get; set; } /// /// Gets or sets the end date and time in UTC /// public DateTime? EndDateTimeUtc { get; set; } }