Files
SkydiveLogs/Back/skydiveLogs-api.Domain/StatsByYearByJumpType.cs
sandre b25e947d62 Split tables for the stats (#6)
Reviewed-on: #6
Co-authored-by: sandre <perso@sebastienandre.com>
Co-committed-by: sandre <perso@sebastienandre.com>
2026-01-26 13:38:07 +00:00

17 lines
323 B
C#

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; }
}
}