Files
SkydiveLogs/Back/skydiveLogs-api/DataContract/JumpListResp.cs
2022-05-08 16:42:04 +02:00

14 lines
290 B
C#

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
}
}