Phase 06 complete: - Namespace renamed in 62 .cs files (namespace + using directives) - AssemblyName + RootNamespace updated in csproj files - FanucProgramManager.csproj → NcProgramManager.csproj - FanucProgramManager.sln → NcProgramManager.sln - FanucProgramManager.Tests/ → NcProgramManager.Tests/ - FANUCMachine.cs deleted (dead code, zero references) Fanuc-prefixed class names kept (FanucMachine, FanucProgram, IFanucMachine) — manufacturer identifiers, not project names. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
25 lines
857 B
C#
Executable file
25 lines
857 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 chiave = "";
|
|
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;
|
|
}
|
|
}
|