using System.Collections.Generic; namespace skydiveLogs_api.Domain { public class StatsByAircraft { public string Label { get; set; } public string Label2 { get; set; } public int Nb { get; set; } public int Id { get; set; } public User User { get; set; } } }