Webiant Logo Webiant Logo
  1. No results found.

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

ShipmentCarrierModel.cs

using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;

namespace Nop.Plugin.Payments.PayPalCommerce.Models.Admin;

/// 
/// Represents the shipment carrier model
/// 
public record ShipmentCarrierModel : BaseNopEntityModel
{
    #region Properties

    [NopResourceDisplayName("Plugins.Payments.PayPalCommerce.Shipment.Carrier")]
    public string PayPalCommerceShipmentCarrier { get; set; }

    public string TrackingNumber { get; set; }

    #endregion
}