12 lines
344 B
C#
12 lines
344 B
C#
namespace Nop.Core.Domain.Stores;
|
|
|
|
/// <summary>
|
|
/// Represents an entity which supports store mapping
|
|
/// </summary>
|
|
public partial interface IStoreMappingSupported
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether the entity is limited/restricted to certain stores
|
|
/// </summary>
|
|
bool LimitedToStores { get; set; }
|
|
} |