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

9 lines
228 B
C#
Raw Normal View History

2022-06-01 22:24:42 +00:00
namespace RSND.Core.Querying.Queries;
public class GetQuery : IQuery
{
public string Type { get; set; }
public string Table { get; set; }
public string Select { get; set; }
public string Where { get; set; }
}