Webiant Logo Webiant Logo
  1. No results found.

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

IStoreMappingSupported.cs

namespace Nop.Core.Domain.Stores;

/// 
/// Represents an entity which supports store mapping
/// 
public partial interface IStoreMappingSupported
{
    /// 
    /// Gets or sets a value indicating whether the entity is limited/restricted to certain stores
    /// 
    bool LimitedToStores { get; set; }
}