优化内存分享,修复一些问题,新增答题投票功能

This commit is contained in:
snltty
2023-12-07 17:04:06 +08:00
parent a664ee8813
commit 1a62bd809d
181 changed files with 30746 additions and 29234 deletions

View File

@@ -0,0 +1,17 @@
namespace cmonitor.client.reports.command
{
public sealed class CommandReport : IReport
{
public string Name => "Command";
public CommandReport()
{
}
public object GetReports(ReportType reportType)
{
return null;
}
}
}