nc_program_manager/InputArgs.cs
dtrentin 3312a57757 feat(08-license-integration): wire RSA license check, remove -chiave arg
Replace AES checkLicense with MachineFingerprint+LicenseFile+LicenseValidator.
License.lic hardcoded next to EXE; -chiave= CLI arg and InputArgs.chiave removed.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-17 23:10:05 +02:00

24 lines
822 B
C#
Executable file

using NcProgramManager.Cnc.Models;
namespace NcProgramManager
{
internal class InputArgs
{
public CncManufacturer manufacturer = CncManufacturer.Fanuc;
public int tipo = 0; // kept for legacy parsing only
public string azione = "";
public string ip = "";
public string porta = "";
public short pathCNC = 1;
public int nodoHssb = -1;
public string username = "";
public string password = "";
public string commentoProgramma = "";
public string pathLocaleProgramma = "";
public bool compatibilityMode = false;
public bool hasToolOffsetData = false;
public bool hasWorkZeroOffsetData = false;
public bool mostraHelp = false;
public bool debugMode = false;
}
}