From ae059e441623bb99b849118f4b05a2820e0b96be Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 10 Dec 2025 12:16:50 +0100 Subject: [PATCH] Add VirtualEntityOptions and EntityOptions records Introduced two new record types: VirtualEntityOptions (currently empty) and EntityOptions, which encapsulates a Table instance. These additions lay groundwork for future entity configuration options. --- src/ReC.Infrastructure/Options/Table.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/ReC.Infrastructure/Options/Table.cs b/src/ReC.Infrastructure/Options/Table.cs index 80ea4e8..3bb7257 100644 --- a/src/ReC.Infrastructure/Options/Table.cs +++ b/src/ReC.Infrastructure/Options/Table.cs @@ -3,4 +3,10 @@ public record Table( string Name, string? Schema = null -); \ No newline at end of file +); + +public record VirtualEntityOptions +{ +} + +public record EntityOptions(Table Table); \ No newline at end of file