namespace Heisig.HMI.AdsManager;
///
/// Struct with the settings for connecting to the ads server
///
public class AdsSettings
{
///
/// Ads server address
///
public string AdsAdress { get; set; } = "127.0.0.1.1.1";
///
/// Ads server port
///
public int AdsPort { get; set; } = 851;
///
/// Intervall for reconnect tries
///
public int ReconnectIntervalMS { get; set; } = 2000;
///
/// Variable name for which contains the online change counter
///
public string OnlineChangeCntVar { get; set; } = "TWinCAT_SystemInfoVarList._AppInfo.OnlineChangeCnt";
}