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:
2025-12-10 12:10:06 +01:00
parent 73ffaaab08
commit d771dbbc9e

View File

@@ -0,0 +1,6 @@
namespace ReC.Infrastructure.Options;
public record Table(
string Name,
string? Schema = null
);