Files
cms_thermo_active/Step.Model/ConfigModels/GenericConfigModel.cs
T
CMS4390\marantalu 46c34f46e8 * Fixed webapi auth
* WIP signalauth
* Fist commit server config
2017-11-28 17:19:01 +01:00

18 lines
425 B
C#

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; }
}
}