a05c3aeb85
Added signalR auth
16 lines
331 B
C#
16 lines
331 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 int NcVendor { get; set; }
|
|
public string NcIpAddress { get; set; }
|
|
public int NcPort { get; set; }
|
|
}
|
|
}
|