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