You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
329 B
C#
17 lines
329 B
C#
using System;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using NewLife.Caching;
|
|
using NewLife.Reflection;
|
|
|
|
namespace Tool.Model
|
|
{
|
|
public class HmiChModel : BoolModelFactory
|
|
{
|
|
public HmiChModel() : base("HMI_button_CH_ON[0]", "HMI_button_CH_ON[1]")
|
|
{
|
|
}
|
|
}
|
|
}
|