29 lines
744 B
C#
29 lines
744 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 BACnetConfigFile
|
|
{
|
|
[ConfigRow(1)]
|
|
public Boolean BACnetEnable { get; set; }
|
|
[ConfigRow(2)]
|
|
public UInt16 BACnetPort { get; set; }
|
|
[ConfigRow(3)]
|
|
public UInt16 SubscriptionDuration { get; set; }
|
|
|
|
[ConfigRow(4)]
|
|
public UInt32 WAGOErrorDevice { get; set; }
|
|
[ConfigRow(5)]
|
|
public string WAGOErrorCode { get; set; } = string.Empty;
|
|
[ConfigRow(6)]
|
|
public string WAGOErrorArgument { get; set; } = string.Empty;
|
|
}
|
|
}
|