BotSharp/src/Plugins/BotSharp.Plugin.SqlDriver/Models/ExecuteQueryArgs.cs

10 lines
213 B
C#
Raw Normal View History

2024-09-17 11:32:11 +00:00
using System.Text.Json.Serialization;
namespace BotSharp.Plugin.SqlDriver.Models;
public class ExecuteQueryArgs
{
[JsonPropertyName("sql_statements")]
public string[] SqlStatements { get; set; } = [];
}