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.
This commit is contained in:
6
src/ReC.Infrastructure/Options/Table.cs
Normal file
6
src/ReC.Infrastructure/Options/Table.cs
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
namespace ReC.Infrastructure.Options;
|
||||||
|
|
||||||
|
public record Table(
|
||||||
|
string Name,
|
||||||
|
string? Schema = null
|
||||||
|
);
|
||||||
Reference in New Issue
Block a user