18 lines
447 B
C#
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; }
|
|
}
|
|
}
|