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