Webiant Logo Webiant Logo
  1. No results found.

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

IDescriptor.cs

namespace Nop.Services.Plugins;

/// 
/// Represents descriptor of the application extension (plugin or theme)
/// 
public partial interface IDescriptor
{
    /// 
    /// Gets or sets the system name
    /// 
    string SystemName { get; set; }

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