Webiant Logo Webiant Logo
  1. No results found.

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

IPluginModel.cs


namespace Nop.Web.Framework.Models;

/// 
/// Represents a plugin model
/// 
public partial interface IPluginModel
{
    /// 
    /// Gets or sets a value indicating whether a plugin is active
    /// 
    bool IsActive { get; set; }

    /// 
    /// Gets or sets a friendly name
    /// 
    string FriendlyName { get; set; }

    /// 
    /// Gets or sets a system name
    /// 
    string SystemName { get; set; }

    /// 
    /// Gets or sets a display order
    /// 
    int DisplayOrder { get; set; }

    /// 
    /// Gets or sets a configuration URL
    /// 
    string ConfigurationUrl { get; set; }

    /// 
    /// Gets or sets a logo URL
    /// 
    string LogoUrl { get; set; }
}