using System.Collections.Generic; namespace SharedLibraryCore.Helpers { /// /// generic class for passing information about a resource query /// /// Type of query result public class ResourceQueryHelperResult { /// /// indicates the total number of results found /// public long TotalResultCount { get; set; } /// /// indicates the total number of results retrieved /// public int RetrievedResultCount { get; set; } /// /// collection of results /// public IEnumerable Results { get; set; } } }