IW4M-Admin/WebfrontCore/Controllers/API/Dtos/FindClientResponse.cs
2020-05-25 13:04:44 -05:00

19 lines
473 B
C#

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