Webiant Logo Webiant Logo
  1. No results found.

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

IAclSupportedModel.cs

using Microsoft.AspNetCore.Mvc.Rendering;

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
    /// 
    IList SelectedCustomerRoleIds { get; set; }

    /// 
    /// Gets or sets items for the all available customer roles
    /// 
    IList AvailableCustomerRoles { get; set; }

    #endregion
}