You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
743 B
32 lines
743 B
using IOTContainer.MvvmBase;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IOTContainer.ViewModel
|
|
{
|
|
public class MessBoxViewModel: ViewModelBase
|
|
{
|
|
private string _text;
|
|
|
|
public string Text
|
|
{
|
|
get { return _text; }
|
|
set { base.SetProperty(ref _text, value, "Text"); }
|
|
}
|
|
private string _detail;
|
|
|
|
public string Detail
|
|
{
|
|
get { return _detail; }
|
|
set { base.SetProperty(ref _detail, value, "Detail"); }
|
|
}
|
|
public MessBoxViewModel() { }
|
|
public MessBoxViewModel(string messgae)
|
|
{
|
|
Text = messgae;
|
|
}
|
|
}
|
|
}
|
|
|