blob: 9302dafc865d0b5d2b166bc1c80fc5917d4dea14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using System.Collections.Generic;
using System.Data.SqlClient;
namespace Gestor.Model.Common;
public class SqlQueryCondition
{
public string Condicao { get; set; }
public List<SqlParameter> Parametros { get; set; }
}
|