Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmart.Model
- {
- public class DelegationNotifi
- {
- private volatile static DelegationNotifi _Instance;
- public static DelegationNotifi GetInstance => _Instance ?? (_Instance = new DelegationNotifi());
- private DelegationNotifi() { }
-
- /// <summary>
- /// 新增设备时的数据验证
- /// </summary>
- public Func<DeviceManagermentResult, bool> AddDeviceVerify { get; set; }
-
- /// <summary>
- /// 取消按钮通知
- /// </summary>
- public Action<DeviceManagermentResult> Cancel { get; set; }
-
- /// <summary>
- /// 确认按钮通知
- /// </summary>
- public Action<DeviceManagermentResult> Confirm { get; set; }
-
- /// <summary>
- /// 变量保存通知
- /// </summary>
- public Action VariableSave { get; set; }
-
- /// <summary>
- /// 变量名更改通知
- /// </summary>
- public Action<int> VarNameChanged { get; set; }
-
- }
- }
|