* Fixed webapi auth

* WIP signalauth
* Fist commit server config
This commit is contained in:
CMS4390\marantalu
2017-11-28 17:19:01 +01:00
parent 9b6b3194e4
commit 46c34f46e8
22 changed files with 518 additions and 22 deletions
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
{
public class GenericConfigModel
{
public string Language { get; set; }
public int ServerPort { get; set; }
public int NcVendor { get; set; }
public int NcPort { get; set; }
public string NcIpAddress { get; set; }
}
}