Files
SkydiveLogs/Back/skydiveLogs-api/DataContract/StatisticForLastYearResp.cs
Sébastien André 6e804b1ae4 Add controler actions to return stats for
the current season
2020-02-14 16:48:43 +01:00

12 lines
264 B
C#

using System.Collections.Generic;
namespace skydiveLogs_api.DataContract
{
public class StatisticForLastYearResp
{
public IEnumerable<StatisticResp> ByDz { get; set; }
public IEnumerable<StatisticResp> ByJumpType { get; set; }
}
}