Working on BackgroundService for Seq Logging

This commit is contained in:
Janus C. H. Knudsen 2025-02-13 00:40:42 +01:00
parent 48578b216f
commit 7bcb7b0e66
9 changed files with 240 additions and 53 deletions

View file

@ -0,0 +1,9 @@
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 { }
}