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;

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

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