Webiant Logo Webiant Logo
  1. No results found.

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

StoreMapping.cs

namespace Nop.Core.Domain.Stores;

/// 
/// Represents a store mapping record
/// 
public partial class StoreMapping : BaseEntity
{
    /// 
    /// Gets or sets the entity identifier
    /// 
    public int EntityId { get; set; }

    /// 
    /// Gets or sets the entity name
    /// 
    public string EntityName { get; set; }

    /// 
    /// Gets or sets the store identifier
    /// 
    public int StoreId { get; set; }
}