Files
UCS_schermsoftware/UCS.ConfigFile/IOTServerConfigFile.cs
2021-04-16 08:13:01 +02:00

22 lines
457 B
C#

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
using UCS.ConfigFile.Attributes;
namespace UCS.ConfigFile
{
public class IOTServerConfigFile
{
[ConfigRow(1)]
public Boolean IOTEnable { get; set; }
[ConfigRow(2)]
public UInt16 ServerPort { get; set; }
}
}