SWPCore/Core/Configurations/IAppConfiguration.cs

10 lines
347 B
C#
Raw Permalink Normal View History

namespace SWP.Core.Configurations
{
/// <summary>
/// Marker interface for application configurations that should be automatically registered in the DI container.
/// Classes implementing this interface will be loaded from configuration and registered as singletons.
/// </summary>
public interface IAppConfiguration { }
}