using SharedLibraryCore.Dtos; using System.Collections.Generic; namespace WebfrontCore.Controllers.API.Dtos { public class FindClientResponse { /// /// total number of client found matching the query /// public long TotalFoundClients { get; set; } /// /// collection of doun clients /// public IEnumerable Clients { get; set; } } }