13 lines
310 B
C#
13 lines
310 B
C#
|
|
namespace Nop.Web.Framework.Models;
|
|
|
|
/// <summary>
|
|
/// Represents a settings model
|
|
/// </summary>
|
|
public partial interface ISettingsModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets an active store scope configuration (store identifier)
|
|
/// </summary>
|
|
int ActiveStoreScopeConfiguration { get; set; }
|
|
} |