Files
YouTube-Manager/Manager.App/Services/System/HostedServiceConnector.cs
2025-09-09 00:58:12 +02:00

11 lines
250 B
C#

namespace Manager.App.Services.System;
public class HostedServiceConnector
{
private readonly List<IHostedService> _hostedServices = [];
public void RegisterService(IHostedService service)
{
_hostedServices.Add(service);
}
}