feat: 添加注册人数分析,优化bbs聊天回车优化
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Analyse;
|
||||
|
||||
public class RegisterAnalyseDto
|
||||
{
|
||||
public RegisterAnalyseDto(DateTime time, int number)
|
||||
{
|
||||
Time = time;
|
||||
Number = number;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 时间
|
||||
/// </summary>
|
||||
public DateTime Time { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 人数
|
||||
/// </summary>
|
||||
public int Number { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user