mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
19 lines
483 B
C#
19 lines
483 B
C#
using System.Collections.Generic;
|
|
using SharedLibraryCore.Dtos;
|
|
|
|
namespace IW4MAdmin.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; }
|
|
}
|
|
}
|