Reviewed-on: #6 Co-authored-by: sandre <perso@sebastienandre.com> Co-committed-by: sandre <perso@sebastienandre.com>
17 lines
323 B
C#
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; }
|
|
}
|
|
} |