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;

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

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