namespace BotSharp.Plugin.MongoStorage.Collections; public class GlobalStatisticsDocument : MongoBase { public string Category { get; set; } public string Group { get; set; } public IDictionary Data { get; set; } = new Dictionary(); public DateTime RecordTime { get; set; } }