14 lines
469 B
C#
14 lines
469 B
C#
using CommandLine;
|
|
|
|
namespace RolemasterDb.ImportTool;
|
|
|
|
[Verb("load", HelpText = "Load a parsed critical table from its extracted text artifact.")]
|
|
public sealed class LoadOptions
|
|
{
|
|
[Value(0, MetaName = "table", Required = true, HelpText = "The manifest slug of the critical table to load.")]
|
|
public string Table { get; set; } = string.Empty;
|
|
|
|
[Option('d', "db", HelpText = "Optional SQLite database path.")]
|
|
public string? DatabasePath { get; set; }
|
|
}
|