Files
FSI.BT.IR.Tools/FSI.Lib/FSI.Lib/Guis/SieTiaWinCCMsgMgt/Model/WinCC.cs
2022-03-24 15:52:02 +01:00

18 lines
447 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FSI.Lib.Guis.SieTiaWinCCMsgMgt.Model
{
public class WinCC
{
public bool AutoStart { get; set; }
public int UpdateIntervall { get; set; }
public string WindowsName { get; set; }
public string WindowsClassName { get; set; }
public string ButtonName { get; set; }
}
}