Webiant Logo Webiant Logo
  1. No results found.

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

ExportTierPrice.cs

namespace Nop.Services.ExportImport;

public partial class ExportTierPrice
{
    /// 
    /// Gets or sets the tier price identifier
    /// 
    public int Id { 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; }
}