Try your search with a different keyword or use * as a wildcard.
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; }
}