From f1ccd7de64749e39fc44b8e164f37c1fb5a75ee0 Mon Sep 17 00:00:00 2001 From: j4ck <50369519+j4cegh@users.noreply.github.com> Date: Thu, 2 Jun 2022 01:27:55 +0300 Subject: [PATCH] Remove useless Type (we get it from BaseQuery) --- .idea/.idea.RSND/.idea/vcs.xml | 6 ++++++ RSND/Core/Querying/Queries/GetQuery.cs | 1 - 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .idea/.idea.RSND/.idea/vcs.xml diff --git a/.idea/.idea.RSND/.idea/vcs.xml b/.idea/.idea.RSND/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/.idea.RSND/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/RSND/Core/Querying/Queries/GetQuery.cs b/RSND/Core/Querying/Queries/GetQuery.cs index 4d8bdf8..5ca17bc 100644 --- a/RSND/Core/Querying/Queries/GetQuery.cs +++ b/RSND/Core/Querying/Queries/GetQuery.cs @@ -2,7 +2,6 @@ public class GetQuery : IQuery { - public string Type { get; set; } public string Table { get; set; } public string Select { get; set; } public string Where { get; set; }