using Microsoft.AspNetCore.Mvc.Rendering; using Nop.Web.Framework.Mvc.ModelBinding; namespace Nop.Web.Framework.Models; /// /// Represents a model which supports access control list (ACL) /// public partial interface IAclSupportedModel { #region Properties /// /// Gets or sets identifiers of the selected customer roles /// [NopResourceDisplayName("Admin.IAclSupportedModel.Fields.AclCustomerRoles")] IList SelectedCustomerRoleIds { get; set; } /// /// Gets or sets items for the all available customer roles /// IList AvailableCustomerRoles { get; set; } #endregion }