BotSharp/src/Infrastructure/BotSharp.Core/Conversations/Services/ConversationProgressService.cs

12 lines
274 B
C#

namespace BotSharp.Core.Conversations.Services
{
public class ConversationProgressService : IConversationProgressService
{
public FunctionExecuting OnFunctionExecuting { get; set; }
public FunctionExecuted OnFunctionExecuted { get; set; }
}
}