Try your search with a different keyword or use * as a wildcard.
namespace Nop.Services.ExportImport;
public partial class ExportTierPrice
{
/// <summary>
/// Gets or sets the tier price identifier
/// </summary>
public int Id { get; set; }
/// <summary>
/// Gets or sets the store identifier (0 - all stores)
/// </summary>
public int StoreId { get; set; }
/// <summary>
/// Gets or sets the customer role identifier
/// </summary>
public int? CustomerRoleId { get; set; }
/// <summary>
/// Gets or sets the quantity
/// </summary>
public int Quantity { get; set; }
/// <summary>
/// Gets or sets the price
/// </summary>
public decimal Price { get; set; }
/// <summary>
/// Gets or sets the start date and time in UTC
/// </summary>
public DateTime? StartDateTimeUtc { get; set; }
/// <summary>
/// Gets or sets the end date and time in UTC
/// </summary>
public DateTime? EndDateTimeUtc { get; set; }
}