Add controler actions to return stats for
the current season
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.DataContract
|
||||
{
|
||||
public class StatisticForLastMonthResp
|
||||
{
|
||||
public IEnumerable<StatisticResp> ByDz { get; set; }
|
||||
|
||||
public IEnumerable<StatisticResp> ByJumpType { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.DataContract
|
||||
{
|
||||
public class StatisticForLastYearResp
|
||||
{
|
||||
public IEnumerable<StatisticResp> ByDz { get; set; }
|
||||
|
||||
public IEnumerable<StatisticResp> ByJumpType { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user