From d771dbbc9e7b17500c75da95ffd25177b4457ec2 Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 10 Dec 2025 12:10:06 +0100 Subject: [PATCH] Add Table record in ReC.Infrastructure.Options namespace Introduced a new Table record with Name and optional Schema properties under the ReC.Infrastructure.Options namespace. This addition provides a structured way to represent database table metadata. --- src/ReC.Infrastructure/Options/Table.cs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/ReC.Infrastructure/Options/Table.cs diff --git a/src/ReC.Infrastructure/Options/Table.cs b/src/ReC.Infrastructure/Options/Table.cs new file mode 100644 index 0000000..80ea4e8 --- /dev/null +++ b/src/ReC.Infrastructure/Options/Table.cs @@ -0,0 +1,6 @@ +namespace ReC.Infrastructure.Options; + +public record Table( + string Name, + string? Schema = null +); \ No newline at end of file