68 lines
1.7 KiB
C#
68 lines
1.7 KiB
C#
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(); }
|
|
}
|
|
}
|
|
}
|