RSND/RSND/Core/Querying/Queries/SetQuery.cs

11 lines
312 B
C#
Raw Normal View History

2022-06-03 19:02:22 +00:00
namespace RSND.Core.Querying.Queries;
public class SetQuery : Query
{
public string TableName { get; set; }
public string Key { get; set; }
public string Value { get; set; }
2022-06-04 21:21:27 +00:00
public string KeySet { get; set; }
public string ValueSet { get; set; }
2022-06-04 21:01:35 +00:00
public string NewValue { get; set; }
2022-06-03 19:02:22 +00:00
}