Improved configuration

Added signalR auth
This commit is contained in:
CMS4390\marantalu
2017-12-01 17:18:18 +01:00
parent 46c34f46e8
commit a05c3aeb85
32 changed files with 544 additions and 216 deletions
@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
{
public class NcConfigModel
{
public int NcVendor { get; set; }
public string NcIpAddress { get; set; }
public int NcPort { get; set; }
}
}