Files
SkydiveLogs/Back/skydiveLogs-api.Domain/StatsByYearByJumpType.cs

17 lines
322 B
C#

using System.Collections.Generic;
namespace skydiveLogs_api.Domain
{
public class StatsByYearByJumpType
{
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; }
}
}