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