Ajout de l'implémentation des stats par dz, avion, piège et annèe.

This commit is contained in:
Sébastien André
2019-10-25 15:05:57 +02:00
parent e8dacaaefe
commit 6499e03c56
11 changed files with 159 additions and 25 deletions

View File

@@ -1,6 +1,4 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace skydiveLogs_api.Model
{
@@ -23,5 +21,7 @@ namespace skydiveLogs_api.Model
public bool WithCutaway { get; set; }
public string Notes { get; set; }
public DateTime JumpDate { get; set; }
}
}

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace skydiveLogs_api.Model
{
public class Statistic
{
public string Label { get; set; }
public int Nb { get; set; }
}
}