17 lines
339 B
C#
17 lines
339 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Text;
|
||
|
|
|
||
|
|
namespace BotSharp.Plugin.MongoStorage.Repository
|
||
|
|
{
|
||
|
|
public partial class MongoRepository
|
||
|
|
{
|
||
|
|
#region Statistics
|
||
|
|
public void IncrementConversationCount()
|
||
|
|
{
|
||
|
|
throw new NotImplementedException();
|
||
|
|
}
|
||
|
|
#endregion
|
||
|
|
}
|
||
|
|
}
|