using MonitoringTechnology.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MonitoringTechnology.Models { public class ErrorMessageModel:NotifyBase { private string _messageCon; public string _MessageCon { get { return _messageCon; } set { _messageCon = value; this.DoNotify(); } } private string laYaConBtn = "连接"; /// /// 蓝牙连接按钮名称信息 /// public string LaYaConBtn { get { return laYaConBtn; } set { laYaConBtn = value; this.DoNotify(); } } /// /// 蓝牙连接状态信息 /// private string _connectionMessage; public string ConnectionMessage { get { return _connectionMessage; } set { _connectionMessage = value;this.DoNotify(); } } /// /// 当前蓝牙设备信息 /// private string _blueConnectionMessage; public string BlueConnectionMessage { get { return _blueConnectionMessage; } set { _blueConnectionMessage = value;this.DoNotify(); } } /// /// 监听 /// private string laYaMonitor ="监听"; public string LaYaMonitor { get { return laYaMonitor; } set { laYaMonitor = value;this.DoNotify(); } } /// /// 信息 /// private string informationMessage; public string InformationMessage { get { return informationMessage; } set { informationMessage = value; this.DoNotify(); } } } }