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