Files
cms_thermo_active/Step.Model/ConfigModels/NcConfigModel.cs
T
Lucio Maranta fec3d00ff9 * Refactored NC_ERRORS
+ Added client configuration api
* Refactored serverconfig
2018-01-11 15:56:33 +01:00

17 lines
381 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
{
public class NcConfigModel
{
public string NcVendor { get; set; }
public bool showNcHMI { get; set; }
public string NcIpAddress { get; set; }
public ushort NcPort { get; set; }
}
}