Add customer communication system

This commit is contained in:
sysadmin
2025-08-27 18:02:39 +01:00
parent 1f7c0af497
commit eae5be3e7c
136 changed files with 14552 additions and 97 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Threading;
using System.Threading.Tasks;
namespace LittleShop.Services;
public interface ITelegramBotManagerService
{
Task StartAsync(CancellationToken cancellationToken);
Task StopAsync(CancellationToken cancellationToken);
Task<bool> AddBotAsync(Guid botId, string botToken);
Task<bool> RemoveBotAsync(Guid botId);
Task<bool> UpdateBotSettingsAsync(Guid botId);
Task<int> GetActiveBotCount();
}