using Nop.Plugin.Payments.PayPalCommerce.Domain; namespace Nop.Plugin.Payments.PayPalCommerce.Models.Public; /// /// Represents the Google Pay model /// public record GooglePayModel : OrderModel { #region Properties public ButtonPlacement Placement { get; set; } public string Country { get; set; } public string CurrencyCode { get; set; } public bool ShippingIsRequired { get; set; } public List<(string Type, string Price, string Status, string Label)> Items { get; set; } = new(); #endregion }