Webiant Logo Webiant Logo
  1. No results found.

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

GetShippingOptionResponse.cs

using Nop.Core.Domain.Shipping;

namespace Nop.Services.Shipping;

/// <summary>
/// Represents a response of getting shipping rate options
/// </summary>
public partial class GetShippingOptionResponse : BaseNopResult
{
    public GetShippingOptionResponse()
    {
        ShippingOptions = new List<ShippingOption>();
    }

    /// <summary>
    /// Gets or sets a list of shipping options
    /// </summary>
    public IList<ShippingOption> ShippingOptions { get; set; }

    /// <summary>
    /// Gets or sets a value indicating whether shipping is done from multiple locations (warehouses)
    /// </summary>
    public bool ShippingFromMultipleLocations { get; set; }
}