namespace RSND.Core.Querying; /// /// The required values that any query must have. /// public class BaseQuery { public BaseQuery(string type) { Type = type; } public string Type { get; set; } }