2024-02-22 19:37:14 +00:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Plugin.SqlDriver.Models;
|
|
|
|
|
|
|
|
|
|
public class LookupDictionary
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("table")]
|
|
|
|
|
public string Table { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("keyword")]
|
|
|
|
|
public string Keyword { get; set; }
|
|
|
|
|
|
2024-02-27 13:19:05 +00:00
|
|
|
[JsonPropertyName("reason")]
|
|
|
|
|
public string Reason { get; set; }
|
|
|
|
|
|
2024-02-22 19:37:14 +00:00
|
|
|
[JsonPropertyName("columns")]
|
|
|
|
|
public string[] Columns { get; set; }
|
|
|
|
|
}
|