77 lines
1.8 KiB
C#
77 lines
1.8 KiB
C#
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 = "连接";
|
|
/// <summary>
|
|
/// 蓝牙连接按钮名称信息
|
|
/// </summary>
|
|
public string LaYaConBtn
|
|
{
|
|
get { return laYaConBtn; }
|
|
set { laYaConBtn = value; this.DoNotify(); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 蓝牙连接状态信息
|
|
/// </summary>
|
|
private string _connectionMessage;
|
|
|
|
public string ConnectionMessage
|
|
{
|
|
get { return _connectionMessage; }
|
|
set { _connectionMessage = value;this.DoNotify(); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 当前蓝牙设备信息
|
|
/// </summary>
|
|
private string _blueConnectionMessage;
|
|
|
|
public string BlueConnectionMessage
|
|
{
|
|
get { return _blueConnectionMessage; }
|
|
set { _blueConnectionMessage = value;this.DoNotify(); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 监听
|
|
/// </summary>
|
|
private string laYaMonitor ="监听";
|
|
|
|
public string LaYaMonitor
|
|
{
|
|
get { return laYaMonitor; }
|
|
set { laYaMonitor = value;this.DoNotify(); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 信息
|
|
/// </summary>
|
|
private string informationMessage;
|
|
|
|
public string InformationMessage
|
|
{
|
|
get { return informationMessage; }
|
|
set { informationMessage = value; this.DoNotify(); }
|
|
}
|
|
|
|
|
|
}
|
|
}
|