PlanTempusApp/Core/Configurations/IAppConfiguration.cs

10 lines
343 B
C#
Raw Normal View History

namespace 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 { }
}