8 lines
184 B
C#
8 lines
184 B
C#
using Microsoft.Extensions.Hosting;
|
|
|
|
namespace Toolkit.Foundation;
|
|
|
|
public interface IConfigurationMonitor<TConfiguration> :
|
|
IHostedService
|
|
where TConfiguration :
|
|
class; |