31 lines
697 B
C#
31 lines
697 B
C#
namespace Flawless.Communication.Response;
|
|
|
|
public struct RepoStatisticResponse
|
|
{
|
|
public struct DepotDetail
|
|
{
|
|
public string DepotName { get; set; }
|
|
|
|
public long DepotSize { get; set; }
|
|
}
|
|
|
|
public struct CommitByPersonDetail
|
|
{
|
|
public string Username { get; set; }
|
|
|
|
public int Count { get; set; }
|
|
}
|
|
|
|
public struct CommitByDayDetail
|
|
{
|
|
public DateTime Day { get; set; }
|
|
|
|
public int Count { get; set; }
|
|
}
|
|
|
|
public DepotDetail[] Depots { get; set; }
|
|
|
|
public CommitByPersonDetail[] CommitByPerson { get; set; }
|
|
|
|
public CommitByDayDetail[] CommitByDay { get; set; }
|
|
} |