2025-02-20 00:23:13 +01:00
|
|
|
|
namespace PlanTempus.Core.Configurations
|
2025-02-13 00:40:42 +01:00
|
|
|
|
{
|
|
|
|
|
|
/// <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 { }
|
|
|
|
|
|
|
|
|
|
|
|
}
|