tbf/TBF/Rig/Input/DataStorage/UniDataStorageReader/Interfaces/DataQuery.cs

17 lines
554 B
C#

using System.Collections.Generic;
namespace TBF.Rig.Input.DataStorage.UniDataStorageReader
{
/// <summary>
/// Represents query input for data storage readers.
/// Each value is used to execute the same query template once.
/// A single-item list represents a single query.
/// </summary>
public class DataQuery
{
/// <summary>
/// Parameter values used for repeated execution of the same query template.
/// </summary>
public List<string> QueryParams { get; } = new List<string>();
}
}