22 lines
457 B
C#
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; }
|
|
}
|
|
}
|