RSND/RSND/Core/Querying/Queries/GetQuery.cs

15 lines
338 B
C#
Raw Normal View History

2022-06-01 22:24:42 +00:00
namespace RSND.Core.Querying.Queries;
public class GetQuery : IQuery
{
2022-06-01 22:29:48 +00:00
public GetQuery(string table, string select, string where)
{
Table = table;
Select = select;
Where = where;
}
2022-06-01 22:24:42 +00:00
public string Table { get; set; }
public string Select { get; set; }
public string Where { get; set; }
}