BotSharp/src/Infrastructure/BotSharp.Abstraction/Routing/IRoutingService.cs

8 lines
143 B
C#
Raw Normal View History

2023-09-03 04:11:53 +00:00
namespace BotSharp.Abstraction.Routing;
public interface IRoutingService
{
Task DeleteRoutingItems();
Task DeleteRoutingProfiles();
}