Webiant Logo Webiant Logo
  1. No results found.

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

CheckoutPickupPointsModel.cs

using Nop.Web.Framework.Models;

namespace Nop.Web.Models.Checkout;

public partial record CheckoutPickupPointsModel : BaseNopModel
{
    public CheckoutPickupPointsModel()
    {
        Warnings = new List();
        PickupPoints = new List();
    }

    public IList Warnings { get; set; }

    public IList PickupPoints { get; set; }
    public bool AllowPickupInStore { get; set; }
    public bool PickupInStore { get; set; }
    public bool PickupInStoreOnly { get; set; }
    public bool DisplayPickupPointsOnMap { get; set; }
    public string GoogleMapsApiKey { get; set; }
}