21 lines
439 B
C#
21 lines
439 B
C#
using System;
|
|
namespace Leadercraft.Server
|
|
{
|
|
// Json Serialisation struct
|
|
#pragma warning disable 0649
|
|
internal struct ResultStruct<T>
|
|
{
|
|
public int StatusCode; // HTTP Response status code
|
|
|
|
public T[] Items; // Result items
|
|
|
|
public int Elapsed; // Time (ns)
|
|
|
|
public string Query; // pseudo query language
|
|
|
|
public string URL; // request URL
|
|
|
|
public string Start; // start time
|
|
}
|
|
#pragma warning restore 0649
|
|
}
|