42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
namespace Nop.Core.Domain.Shipping;
|
|
|
|
/// <summary>
|
|
/// Represents a shipping option
|
|
/// </summary>
|
|
public partial class ShippingOption
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the system name of shipping rate computation method
|
|
/// </summary>
|
|
public string ShippingRateComputationMethodSystemName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a shipping rate (without discounts, additional shipping charges, etc)
|
|
/// </summary>
|
|
public decimal Rate { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a shipping option name
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a shipping option description
|
|
/// </summary>
|
|
public string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a transit days
|
|
/// </summary>
|
|
public int? TransitDays { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating if it's pickup in store shipping option
|
|
/// </summary>
|
|
public bool IsPickupInStore { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a display order
|
|
/// </summary>
|
|
public int? DisplayOrder { get; set; }
|
|
} |