Webiant Logo Webiant Logo
  1. No results found.

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

ShippingOption.cs

namespace Nop.Core.Domain.Shipping;

/// 
/// Represents a shipping option
/// 
public partial class ShippingOption
{
    /// 
    /// Gets or sets the system name of shipping rate computation method
    /// 
    public string ShippingRateComputationMethodSystemName { get; set; }

    /// 
    /// Gets or sets a shipping rate (without discounts, additional shipping charges, etc)
    /// 
    public decimal Rate { get; set; }

    /// 
    /// Gets or sets a shipping option name
    /// 
    public string Name { get; set; }

    /// 
    /// Gets or sets a shipping option description
    /// 
    public string Description { get; set; }

    /// 
    /// Gets or sets a transit days
    /// 
    public int? TransitDays { get; set; }

    /// 
    /// Gets or sets a value indicating if it's pickup in store shipping option
    /// 
    public bool IsPickupInStore { get; set; }

    /// 
    /// Gets or sets a display order
    /// 
    public int? DisplayOrder { get; set; }
}