10 lines
325 B
C#
10 lines
325 B
C#
|
|
namespace BotSharp.Plugin.MongoStorage.Collections;
|
||
|
|
|
||
|
|
public class GlobalStatisticsDocument : MongoBase
|
||
|
|
{
|
||
|
|
public string Category { get; set; }
|
||
|
|
public string Group { get; set; }
|
||
|
|
public IDictionary<string, object> Data { get; set; } = new Dictionary<string, object>();
|
||
|
|
public DateTime RecordDate { get; set; }
|
||
|
|
}
|