[issue #139] client lookup and stats api

This commit is contained in:
RaidMax
2020-05-24 21:22:26 -05:00
parent 4457ee5461
commit 30f2f7bf09
32 changed files with 907 additions and 36 deletions

View File

@ -0,0 +1,18 @@
using SharedLibraryCore.Dtos;
using System.Collections.Generic;
namespace WebfrontCore.Controllers.API.Dtos
{
public class FindClientResponse
{
/// <summary>
/// total number of client found matching the query
/// </summary>
public long TotalFoundClients { get; set; }
/// <summary>
/// collection of doun clients
/// </summary>
public IEnumerable<FindClientResult> Clients { get; set; }
}
}