2025-01-24 05:45:43 +00:00
|
|
|
namespace BotSharp.Plugin.MongoStorage.Collections;
|
|
|
|
|
|
|
|
|
|
public class GlobalStatisticsDocument : MongoBase
|
|
|
|
|
{
|
|
|
|
|
public string Category { get; set; }
|
|
|
|
|
public string Group { get; set; }
|
2025-01-28 05:10:37 +00:00
|
|
|
public IDictionary<string, double> Data { get; set; } = new Dictionary<string, double>();
|
2025-01-24 19:42:17 +00:00
|
|
|
public DateTime RecordTime { get; set; }
|
2025-01-24 05:45:43 +00:00
|
|
|
}
|