BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Repository/MongoRepository.Stats.cs

17 lines
303 B
C#
Raw Normal View History

2024-01-29 04:18:40 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Plugin.MongoStorage.Repository
{
public partial class MongoRepository
{
#region Statistics
public void IncrementConversationCount()
{
2024-01-29 19:02:02 +00:00
2024-01-29 04:18:40 +00:00
}
#endregion
}
}