13 lines
289 B
C#
13 lines
289 B
C#
namespace skydiveLogs_api.Domain
|
|
{
|
|
public class SimpleSummary
|
|
{
|
|
#region Public Properties
|
|
|
|
public Jump LastJump { get; set; }
|
|
public int TotalCutaways { get; set; }
|
|
public int TotalJumps { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |