mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
16 lines
329 B
C#
16 lines
329 B
C#
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace Wabbajack.BuildServer.GraphQL
|
|
{
|
|
public class GraphQLQuery
|
|
{
|
|
|
|
public string OperationName { get; set; }
|
|
|
|
public string NamedQuery { get; set; }
|
|
public string Query { get; set; }
|
|
public JObject Variables { get; set; }
|
|
}
|
|
}
|