Files
SkydiveLogs/Back/skydiveLogs-api.Model/Statistic.cs
Sébastien André 6a5e9020d5 Add an action to retrieve un simple summary with
the total of jumps and the last jump
2020-03-03 15:45:36 +01:00

10 lines
157 B
C#

namespace skydiveLogs_api.Model
{
public class Statistic
{
public string Label { get; set; }
public int Nb { get; set; }
}
}