9 lines
354 B
C#
9 lines
354 B
C#
namespace PlanTempus.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 { }
|
|
|
|
}
|