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>
22 lines
783 B
C#
Executable file
22 lines
783 B
C#
Executable file
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NcProgramManager.Cnc.Models
|
|
{
|
|
public sealed class MachineSnapshot
|
|
{
|
|
public string MainProgram { get; set; }
|
|
public string SubProgram { get; set; }
|
|
public string ProgramComment { get; set; }
|
|
public MachineMode Mode { get; set; }
|
|
public RunState Run { get; set; }
|
|
public MotionState Motion { get; set; }
|
|
public bool Emergency { get; set; }
|
|
public bool AlarmActive { get; set; }
|
|
public TimeSpan CycleTime { get; set; }
|
|
public long PieceCount { get; set; }
|
|
public IReadOnlyList<string> Alarms { get; set; }
|
|
public IReadOnlyList<string> OperatorMessages { get; set; }
|
|
public DateTime CapturedAt { get; set; }
|
|
}
|
|
}
|