Split tables for the stats (#6)

Reviewed-on: #6
Co-authored-by: sandre <perso@sebastienandre.com>
Co-committed-by: sandre <perso@sebastienandre.com>
This commit was merged in pull request #6.
This commit is contained in:
2026-01-26 13:38:07 +00:00
committed by sandre
parent 677e74df10
commit b25e947d62
59 changed files with 1956 additions and 373 deletions

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
namespace skydiveLogs_api.Domain
{
public class StatsByYearByJumpType
{
public string Year { get; set; }
public string JumpType { get; set; }
public int Nb { get; set; }
public int Id { get; set; }
public User User { get; set; }
}
}