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