mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-21 20:24:59 +00:00
feature<Statistics>: add simple statistic page
This commit is contained in:
parent
f04c01b878
commit
c52ed4a711
10 changed files with 512 additions and 0 deletions
15
src/Models/StatisticSample.cs
Normal file
15
src/Models/StatisticSample.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue