Follow the leader
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

19 lines
349B

  1. using System;
  2. namespace Leadercraft.Server
  3. {
  4. internal struct ResultStruct<T>
  5. {
  6. public int StatusCode; // HTTP Response status code
  7. public T[] Items; // Result items
  8. public int Elapsed; // Time (ns)
  9. public string Query; // pseudo query language
  10. public string URL; // request URL
  11. public string Start; // start time
  12. }
  13. }