Files
YouTube-Manager/Manager.App/Services/System/ClientManager.cs
2025-08-31 21:36:53 +02:00

15 lines
316 B
C#

using Manager.YouTube;
namespace Manager.App.Services.System;
public class ClientManager : BackgroundService
{
private readonly List<YouTubeClient> _clients = [];
protected override Task ExecuteAsync(CancellationToken stoppingToken)
{
throw new NotImplementedException();
}
}