12 lines
264 B
C#
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; }
|
|
}
|
|
}
|