mirror of
https://github.com/AlexMacocian/Squealify.git
synced 2026-07-15 14:59:32 +00:00
8 lines
222 B
C#
8 lines
222 B
C#
using System.Collections.Immutable;
|
|
|
|
namespace Squealify.Contexts;
|
|
public readonly struct TableUniqueContext(ImmutableArray<string> columnNames)
|
|
{
|
|
public readonly ImmutableArray<string> ColumnNames = columnNames;
|
|
}
|