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; } }