Webiant Logo Webiant Logo
  1. No results found.

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

IConfig.cs

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;
}