feature<Statistics>: add simple statistic page

This commit is contained in:
leo 2022-01-11 20:18:35 +08:00
parent f04c01b878
commit c52ed4a711
10 changed files with 512 additions and 0 deletions

View file

@ -0,0 +1,15 @@
namespace SourceGit.Models {
/// <summary>
/// 统计图表样品
/// </summary>
public class StatisticSample {
/// <summary>
/// 样品名
/// </summary>
public string Name { get; set; }
/// <summary>
/// 提交个数
/// </summary>
public int Count { get; set; }
}
}