Files
UCS_WinUI/UCS.ConfigFile/StentofonConfigFile.cs
Martijn Scheepers a98dbf7e66 First commit
2021-05-07 11:31:58 +02:00

33 lines
867 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
using UCS.ConfigFile.Attributes;
namespace UCS.ConfigFile
{
public class StentofonConfigFile
{
[ConfigRow(1)]
public Boolean StentofonEnable { get; set; }
[ConfigRow(2)]
public string CentralAddress { get; set; } = string.Empty;
[ConfigRow(3)]
public UInt16 CentralPort { get; set; }
[ConfigRow(4)]
public byte SourceNode { get; set; }
[ConfigRow(5)]
public byte SourceDevice { get; set; }
[ConfigRow(6)]
public byte DestinationNode { get; set; }
[ConfigRow(7)]
public byte DestinationDevice { get; set; }
[ConfigRow(8)]
public UInt32 ConnectionTimeout { get; set; }
}
}