using System; using System.Collections.Generic; using System.Data.SqlClient; using System.Runtime.CompilerServices; namespace Gestor.Model.Common { public class SqlQueryCondition { public string Condicao { get; set; } public List Parametros { get; set; } public SqlQueryCondition() { } } }