Try your search with a different keyword or use * as a wildcard.
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; }
}