Try your search with a different keyword or use * as a wildcard.
using Newtonsoft.Json;
namespace Nop.Core.Configuration;
///
/// Represents a configuration from app settings
///
public partial interface IConfig
{
///
/// Gets a section name to load configuration
///
[JsonIgnore]
string Name => GetType().Name;
///
/// Gets an order of configuration
///
/// Order
public int GetOrder() => 1;
}