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.
CaiQie/Tool/Model/HmiChModel.cs

17 lines
329 B
C#

2 weeks ago
using System;
using System.Text;
using System.Threading.Tasks;
2 weeks ago
using System.Windows.Forms;
using NewLife.Caching;
using NewLife.Reflection;
2 weeks ago
namespace Tool.Model
{
public class HmiChModel : BoolModelFactory
{
public HmiChModel() : base("HMI_button_CH_ON[0]", "HMI_button_CH_ON[1]")
{
}
}
}