19 lines
472 B
C#
19 lines
472 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Client.Config.SubModels
|
|
{
|
|
public class VendorHmi
|
|
{
|
|
public Boolean Enabled { get; set; }
|
|
public Boolean FollowNcWindow { get; set; }
|
|
public ushort Type { get; set; } /* 0: Demo - 1: Fanuc - 2: Siemens - 3: Osai */
|
|
public string IpAddress { get; set; }
|
|
public string Port { get; set; }
|
|
|
|
}
|
|
}
|