using System.Collections.Generic; namespace TBF.Rig.Input.DataStorage.UniDataStorageReader { /// /// 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. /// public class DataQuery { /// /// Parameter values used for repeated execution of the same query template. /// public List QueryParams { get; } = new List(); } }