10 lines
358 B
C#
10 lines
358 B
C#
namespace RolemasterDb.ImportTool;
|
|
|
|
public sealed class ImportCommandResult(string tableSlug, int columnCount, int rollBandCount, int resultCount)
|
|
{
|
|
public string TableSlug { get; } = tableSlug;
|
|
public int ColumnCount { get; } = columnCount;
|
|
public int RollBandCount { get; } = rollBandCount;
|
|
public int ResultCount { get; } = resultCount;
|
|
}
|