15 lines
331 B
C#
15 lines
331 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace BotSharp.Plugin.SqlDriver.Models;
|
|
|
|
public class ExecuteQueryArgs
|
|
{
|
|
[JsonPropertyName("sql_statements")]
|
|
public string[] SqlStatements { get; set; } = [];
|
|
|
|
/// <summary>
|
|
/// Beautifying query result
|
|
/// </summary>
|
|
public bool FormattingResult { get; set; }
|
|
}
|