19 lines
473 B
C#
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; }
|
|||
|
}
|
|||
|
}
|