using Microsoft.AspNetCore.Mvc.Rendering; namespace Nop.Web.Framework.Models; /// /// Represents the store mapping supported model /// public partial interface IStoreMappingSupportedModel { #region Properties /// /// Gets or sets identifiers of the selected stores /// IList SelectedStoreIds { get; set; } /// /// Gets or sets items for the all available stores /// IList AvailableStores { get; set; } #endregion }