10 lines
262 B
C#
Executable file
10 lines
262 B
C#
Executable file
namespace FanucProgramManager.Cnc.Models
|
|
{
|
|
public sealed class CncProgram
|
|
{
|
|
public string Name { get; set; }
|
|
public string Comment { get; set; }
|
|
public string Content { get; set; }
|
|
public string Path { get; set; }
|
|
}
|
|
}
|