fa485d902b
* Added first centralized database config and added machine self-registration into db * Fix database migration with new database * Refactor
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 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; }
|
|
public string NcUniqueId { get; set; }
|
|
public string NcName { get; set; }
|
|
}
|
|
}
|