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.
This commit is contained in:
@@ -4,3 +4,9 @@ public record Table(
|
|||||||
string Name,
|
string Name,
|
||||||
string? Schema = null
|
string? Schema = null
|
||||||
);
|
);
|
||||||
|
|
||||||
|
public record VirtualEntityOptions
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public record EntityOptions(Table Table);
|
||||||
Reference in New Issue
Block a user