20211010_CZPM_upperpc/垂直剖面动态观测系统/Model/ErrorMessageModel.cs

68 lines
1.7 KiB
C#
Raw Normal View History

2023-07-27 03:01:29 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using .Common;
namespace .Model
{
public class ErrorMessageModel : NotifyBase
{
private string _errorMessage_Par;
public string ErrorMessage_Par
{
get { return _errorMessage_Par; }
set { _errorMessage_Par = value; this.DoNotify(); }
}
private string _errorMessage_File;
public string ErrorMessage_File
{
get { return _errorMessage_File; }
set { _errorMessage_File = value; this.DoNotify(); }
}
private string _errorMessage_Time;
public string ErrorMessage_Time
{
get { return _errorMessage_Time; }
set { _errorMessage_Time = value; this.DoNotify(); }
}
private string _irMessage;
public string IrMessage
{
get { return _irMessage; }
set { _irMessage = value; this.DoNotify(); }
}
private string _messagelog;
public string _Messagelog
{
get { return _messagelog; }
set { _messagelog = value; this.DoNotify(); }
}
private string _messageCon;
public string _MessageCon
{
get { return _messageCon; }
set { _messageCon = value; this.DoNotify(); }
}
private string _dataSearchErrorMessage;
public string DataSearchErrorMessage
{
get { return _dataSearchErrorMessage; }
set { _dataSearchErrorMessage = value; this.DoNotify(); }
}
}
}