Webiant Logo Webiant Logo
  1. No results found.

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

ShippingMethodCountryMapping.cs

namespace Nop.Core.Domain.Shipping;

/// 
/// Represents a shipping method-country mapping class
/// 
public partial class ShippingMethodCountryMapping : BaseEntity
{
    /// 
    /// Gets or sets the shipping method identifier
    /// 
    public int ShippingMethodId { get; set; }

    /// 
    /// Gets or sets the country identifier
    /// 
    public int CountryId { get; set; }
}