11 lines
315 B
C#
11 lines
315 B
C#
|
|
namespace BotSharp.Core.Conversations.Services;
|
||
|
|
|
||
|
|
public partial class ConversationService : IConversationService
|
||
|
|
{
|
||
|
|
public async Task UpdateBreakpoint()
|
||
|
|
{
|
||
|
|
var db = _services.GetRequiredService<IBotSharpRepository>();
|
||
|
|
db.UpdateConversationBreakpoint(_conversationId, DateTime.UtcNow);
|
||
|
|
}
|
||
|
|
}
|