Files
cms_thermo_active/Step.Model/ConfigModels/ServerConfigModel.cs
T
2017-12-14 17:35:22 +01:00

16 lines
337 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 ushort NcVendor { get; set; }
public string NcIpAddress { get; set; }
public ushort NcPort { get; set; }
}
}