server-master/srcs/Toolkit/Commands/CheckTranslationsCommand.cs
2026-02-10 18:21:30 +01:00

13 lines
No EOL
454 B
C#

using CommandLine;
namespace Toolkit.Commands;
[Verb("check-translations", HelpText = "Manage the language to update those")]
public class CheckTranslationsCommand
{
[Option('i', "input", Required = true, HelpText = "Input paths from where you want to parse the files")]
public string InputPath { get; set; }
[Option('o', "output", HelpText = "The output you wants to generate your parser")]
public string OutputPath { get; set; }
}