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; }
|
|
|
|
|
public IDictionary<string, object> Data { get; set; } = new Dictionary<string, object>();
|
2025-01-24 19:42:17 +00:00
|
|
|
public DateTime RecordTime { get; set; }
|
2025-01-24 05:45:43 +00:00
|
|
|
}
|