Add an action to retrieve un simple summary with
the total of jumps and the last jump
This commit is contained in:
11
Back/skydiveLogs-api.Model/SimpleSummary.cs
Normal file
11
Back/skydiveLogs-api.Model/SimpleSummary.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace skydiveLogs_api.Model
|
||||
{
|
||||
public class SimpleSummary
|
||||
{
|
||||
public int TotalJumps { get; set; }
|
||||
|
||||
public int TotalCutaway { get; set; }
|
||||
|
||||
public Jump LastJump { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace skydiveLogs_api.Model
|
||||
namespace skydiveLogs_api.Model
|
||||
{
|
||||
public class Statistic
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user