mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 07:12:27 +02:00
20 lines
439 B
C#
20 lines
439 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Robust.Server.Bql
|
|
{
|
|
public struct BqlQuerySelectorParsed
|
|
{
|
|
public List<object> Arguments;
|
|
public string Token;
|
|
public bool Inverted;
|
|
|
|
public BqlQuerySelectorParsed(List<object> arguments, string token, bool inverted)
|
|
{
|
|
Arguments = arguments;
|
|
Token = token;
|
|
Inverted = inverted;
|
|
}
|
|
}
|
|
}
|