Add an endpoint to call the lof of jumps by page.

This commit is contained in:
Sébastien André
2022-05-08 16:42:04 +02:00
parent 0745943c5b
commit 9e18b7708a
16 changed files with 142 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
using System.Collections.Generic;
namespace skydiveLogs_api.DataContract
{
public class JumpListResp
{
#region Public Properties
public int Count { get; set; }
public IEnumerable<JumpResp> Rows { get; set; }
#endregion Public Properties
}
}