1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-07 21:58:06 -05:00
IW4M-Admin/WebfrontCore/Controllers/API/Dtos/FindClientResponse.cs
2024-07-16 22:27:27 +01:00

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