mirror of
https://github.com/AlexMacocian/Squealify.git
synced 2026-07-15 14:59:32 +00:00
10 lines
339 B
C#
10 lines
339 B
C#
using Sybil;
|
|
|
|
namespace Squealify.Contexts;
|
|
public readonly struct MethodWithSqlStatement(MethodBuilder methodBuilder, string placeholder, string commandText)
|
|
{
|
|
public readonly MethodBuilder MethodBuilder = methodBuilder;
|
|
public readonly string Placeholder = placeholder;
|
|
public readonly string CommandText = commandText;
|
|
}
|